@ckeditor/ckeditor5-email 48.2.0-alpha.7 → 48.3.0-alpha.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/dist/augmentation.d.ts +28 -28
- package/dist/emailconfigurationconfig.d.ts +54 -54
- package/dist/emailconfigurationhelper.d.ts +53 -53
- package/dist/emailconfigurationlogger.d.ts +31 -31
- package/dist/emailinlinestylestransformations.d.ts +44 -44
- package/dist/index.d.ts +35 -35
- package/dist/index.js +1 -1
- package/dist/integrations/emptyblock.d.ts +30 -30
- package/dist/integrations/exportinlinestyles.d.ts +30 -30
- package/dist/integrations/font.d.ts +30 -30
- package/dist/integrations/generalhtmlintegration.d.ts +30 -30
- package/dist/integrations/highlight.d.ts +30 -30
- package/dist/integrations/image.d.ts +30 -30
- package/dist/integrations/link.d.ts +30 -30
- package/dist/integrations/list.d.ts +30 -30
- package/dist/integrations/listmultilevel.d.ts +30 -30
- package/dist/integrations/markdown.d.ts +30 -30
- package/dist/integrations/mathtype.d.ts +30 -30
- package/dist/integrations/mediaembed.d.ts +30 -30
- package/dist/integrations/mergefields.d.ts +30 -30
- package/dist/integrations/sourceediting.d.ts +30 -30
- package/dist/integrations/table.d.ts +30 -30
- package/dist/integrations/template.d.ts +30 -30
- package/dist/integrations/todolist.d.ts +30 -30
- package/dist/integrations/upload.d.ts +30 -30
- package/dist/transformations/transformemailaligntoattribute.d.ts +42 -42
- package/dist/transformations/transformemailcolumnwidthstocells.d.ts +17 -17
- package/dist/transformations/transformemailfigcaptiontodiv.d.ts +9 -9
- package/dist/transformations/transformemailfiguretotable.d.ts +55 -55
- package/dist/transformations/transformemailfloattoalign.d.ts +13 -13
- package/dist/transformations/transformemailimagewidthattributes.d.ts +13 -13
- package/dist/transformations/transformemailmargintoalign.d.ts +19 -19
- package/dist/transformations/utils.d.ts +87 -87
- package/package.json +10 -10
package/dist/augmentation.d.ts
CHANGED
|
@@ -1,30 +1,30 @@
|
|
|
1
1
|
/**
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
import type { EmailConfigurationConfig } from
|
|
6
|
-
import type { EmailConfigurationHelper, EmailConfigurationLogger, EmptyBlockEmailIntegration, ExportInlineStylesEmailIntegration, FontEmailIntegration, HighlightEmailIntegration, ImageEmailIntegration, ListEmailIntegration, TableEmailIntegration, MathTypeEmailIntegration, SourceEditingEmailIntegration, MarkdownEmailIntegration } from
|
|
7
|
-
declare module
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
2
|
+
* @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
|
|
3
|
+
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
4
|
+
*/
|
|
5
|
+
import type { EmailConfigurationConfig } from "./emailconfigurationconfig.js";
|
|
6
|
+
import type { EmailConfigurationHelper, EmailConfigurationLogger, EmptyBlockEmailIntegration, ExportInlineStylesEmailIntegration, FontEmailIntegration, HighlightEmailIntegration, ImageEmailIntegration, ListEmailIntegration, TableEmailIntegration, MathTypeEmailIntegration, SourceEditingEmailIntegration, MarkdownEmailIntegration } from "./index.js";
|
|
7
|
+
declare module "@ckeditor/ckeditor5-core" {
|
|
8
|
+
interface EditorConfig {
|
|
9
|
+
/**
|
|
10
|
+
* The configuration of the {@link module:email/emailconfigurationhelper~EmailConfigurationHelper EmailIntegration feature}.
|
|
11
|
+
*
|
|
12
|
+
* Read more in {@link module:email/emailconfigurationconfig~EmailConfigurationConfig}.
|
|
13
|
+
*/
|
|
14
|
+
email?: EmailConfigurationConfig;
|
|
15
|
+
}
|
|
16
|
+
interface PluginsMap {
|
|
17
|
+
[EmailConfigurationHelper.pluginName]: EmailConfigurationHelper;
|
|
18
|
+
[EmailConfigurationLogger.pluginName]: EmailConfigurationLogger;
|
|
19
|
+
[EmptyBlockEmailIntegration.pluginName]: EmptyBlockEmailIntegration;
|
|
20
|
+
[ExportInlineStylesEmailIntegration.pluginName]: ExportInlineStylesEmailIntegration;
|
|
21
|
+
[FontEmailIntegration.pluginName]: FontEmailIntegration;
|
|
22
|
+
[HighlightEmailIntegration.pluginName]: HighlightEmailIntegration;
|
|
23
|
+
[ImageEmailIntegration.pluginName]: ImageEmailIntegration;
|
|
24
|
+
[ListEmailIntegration.pluginName]: ListEmailIntegration;
|
|
25
|
+
[TableEmailIntegration.pluginName]: TableEmailIntegration;
|
|
26
|
+
[MathTypeEmailIntegration.pluginName]: MathTypeEmailIntegration;
|
|
27
|
+
[SourceEditingEmailIntegration.pluginName]: SourceEditingEmailIntegration;
|
|
28
|
+
[MarkdownEmailIntegration.pluginName]: MarkdownEmailIntegration;
|
|
29
|
+
}
|
|
30
30
|
}
|
|
@@ -1,59 +1,59 @@
|
|
|
1
1
|
/**
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
2
|
+
* @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
|
|
3
|
+
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
4
|
+
*/
|
|
5
5
|
/**
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
* @module email/emailconfigurationconfig
|
|
7
|
+
* @publicApi
|
|
8
|
+
*/
|
|
9
9
|
/**
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
10
|
+
* The configuration of the email integration feature.
|
|
11
|
+
*
|
|
12
|
+
* ```ts
|
|
13
|
+
* ClassicEditor
|
|
14
|
+
* .create( {
|
|
15
|
+
* email: ... // Email integration feature options.
|
|
16
|
+
* } )
|
|
17
|
+
* .then( ... )
|
|
18
|
+
* .catch( ... );
|
|
19
|
+
* ```
|
|
20
|
+
*
|
|
21
|
+
* See {@link module:core/editor/editorconfig~EditorConfig all editor configuration options}.
|
|
22
|
+
*/
|
|
23
23
|
export interface EmailConfigurationConfig {
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
24
|
+
/**
|
|
25
|
+
* Configuration for warning or log messages about email client compatibility.
|
|
26
|
+
*
|
|
27
|
+
* ```ts
|
|
28
|
+
* ClassicEditor
|
|
29
|
+
* .create( {
|
|
30
|
+
* email: {
|
|
31
|
+
* logs: {
|
|
32
|
+
* suppressAll: false,
|
|
33
|
+
* suppress: [
|
|
34
|
+
* 'email-configuration-unsupported-reversed-list',
|
|
35
|
+
* 'email-configuration-missing-empty-block-plugin',
|
|
36
|
+
* // ... other warning codes
|
|
37
|
+
* ]
|
|
38
|
+
* }
|
|
39
|
+
* }
|
|
40
|
+
* } )
|
|
41
|
+
* ```
|
|
42
|
+
*/
|
|
43
|
+
logs?: {
|
|
44
|
+
/**
|
|
45
|
+
* Setting this to `true` will silence all compatibility warnings,
|
|
46
|
+
* including any that might be added in future releases. This is not recommended
|
|
47
|
+
* as it may hide important information about the editor's behavior in email clients.
|
|
48
|
+
*
|
|
49
|
+
* @default false
|
|
50
|
+
*/
|
|
51
|
+
suppressAll?: boolean;
|
|
52
|
+
/**
|
|
53
|
+
* Array of specific warning codes to suppress.
|
|
54
|
+
*
|
|
55
|
+
* @default []
|
|
56
|
+
*/
|
|
57
|
+
suppress?: Array<string> | ((warningCode: string, data?: object) => boolean);
|
|
58
|
+
};
|
|
59
59
|
}
|
|
@@ -1,58 +1,58 @@
|
|
|
1
1
|
/**
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
2
|
+
* @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
|
|
3
|
+
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
4
|
+
*/
|
|
5
5
|
/**
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
import { Plugin } from
|
|
10
|
-
import { HighlightEmailIntegration } from
|
|
11
|
-
import { ImageEmailIntegration } from
|
|
12
|
-
import { MathTypeEmailIntegration } from
|
|
13
|
-
import { ExportInlineStylesEmailIntegration } from
|
|
14
|
-
import { ListEmailIntegration } from
|
|
15
|
-
import { TableEmailIntegration } from
|
|
16
|
-
import { EmptyBlockEmailIntegration } from
|
|
17
|
-
import { FontEmailIntegration } from
|
|
18
|
-
import { SourceEditingEmailIntegration } from
|
|
19
|
-
import { MarkdownEmailIntegration } from
|
|
20
|
-
import { GeneralHtmlIntegrationSupport } from
|
|
21
|
-
import { MergeFieldsEmailIntegration } from
|
|
22
|
-
import { TemplateEmailIntegration } from
|
|
23
|
-
import { UploadEmailIntegration } from
|
|
24
|
-
import { MediaEmbedEmailIntegration } from
|
|
25
|
-
import { TodoListEmailIntegration } from
|
|
26
|
-
import { MultiLevelListEmailIntegration } from
|
|
27
|
-
import { LinkEmailIntegration } from
|
|
6
|
+
* @module email/emailconfigurationhelper
|
|
7
|
+
* @publicApi
|
|
8
|
+
*/
|
|
9
|
+
import { Plugin, type PluginDependenciesOf } from "@ckeditor/ckeditor5-core";
|
|
10
|
+
import { HighlightEmailIntegration } from "./integrations/highlight.js";
|
|
11
|
+
import { ImageEmailIntegration } from "./integrations/image.js";
|
|
12
|
+
import { MathTypeEmailIntegration } from "./integrations/mathtype.js";
|
|
13
|
+
import { ExportInlineStylesEmailIntegration } from "./integrations/exportinlinestyles.js";
|
|
14
|
+
import { ListEmailIntegration } from "./integrations/list.js";
|
|
15
|
+
import { TableEmailIntegration } from "./integrations/table.js";
|
|
16
|
+
import { EmptyBlockEmailIntegration } from "./integrations/emptyblock.js";
|
|
17
|
+
import { FontEmailIntegration } from "./integrations/font.js";
|
|
18
|
+
import { SourceEditingEmailIntegration } from "./integrations/sourceediting.js";
|
|
19
|
+
import { MarkdownEmailIntegration } from "./integrations/markdown.js";
|
|
20
|
+
import { GeneralHtmlIntegrationSupport } from "./integrations/generalhtmlintegration.js";
|
|
21
|
+
import { MergeFieldsEmailIntegration } from "./integrations/mergefields.js";
|
|
22
|
+
import { TemplateEmailIntegration } from "./integrations/template.js";
|
|
23
|
+
import { UploadEmailIntegration } from "./integrations/upload.js";
|
|
24
|
+
import { MediaEmbedEmailIntegration } from "./integrations/mediaembed.js";
|
|
25
|
+
import { TodoListEmailIntegration } from "./integrations/todolist.js";
|
|
26
|
+
import { MultiLevelListEmailIntegration } from "./integrations/listmultilevel.js";
|
|
27
|
+
import { LinkEmailIntegration } from "./integrations/link.js";
|
|
28
28
|
/**
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
29
|
+
* The email integration plugin.
|
|
30
|
+
*
|
|
31
|
+
* This is a "glue" plugin that integrates the email integration feature with the editor.
|
|
32
|
+
*/
|
|
33
33
|
export declare class EmailConfigurationHelper extends Plugin {
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
34
|
+
/**
|
|
35
|
+
* @inheritDoc
|
|
36
|
+
*/
|
|
37
|
+
static get pluginName(): "EmailConfigurationHelper";
|
|
38
|
+
/**
|
|
39
|
+
* @inheritDoc
|
|
40
|
+
*/
|
|
41
|
+
static override get isOfficialPlugin(): true;
|
|
42
|
+
/**
|
|
43
|
+
* @inheritDoc
|
|
44
|
+
*/
|
|
45
|
+
static override get isPremiumPlugin(): true;
|
|
46
|
+
/**
|
|
47
|
+
* @inheritDoc
|
|
48
|
+
*/
|
|
49
|
+
static get requires(): PluginDependenciesOf<[HighlightEmailIntegration, ImageEmailIntegration, MathTypeEmailIntegration, ExportInlineStylesEmailIntegration, ListEmailIntegration, TableEmailIntegration, EmptyBlockEmailIntegration, FontEmailIntegration, SourceEditingEmailIntegration, MarkdownEmailIntegration, GeneralHtmlIntegrationSupport, MergeFieldsEmailIntegration, TemplateEmailIntegration, UploadEmailIntegration, MediaEmbedEmailIntegration, TodoListEmailIntegration, MultiLevelListEmailIntegration, LinkEmailIntegration]>;
|
|
50
|
+
/**
|
|
51
|
+
* @inheritDoc
|
|
52
|
+
*/
|
|
53
|
+
init(): void;
|
|
54
|
+
/**
|
|
55
|
+
* @inheritDoc
|
|
56
|
+
*/
|
|
57
|
+
override destroy(): void;
|
|
58
58
|
}
|
|
@@ -1,39 +1,39 @@
|
|
|
1
1
|
/**
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
import { type Editor, Plugin } from
|
|
2
|
+
* @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
|
|
3
|
+
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
4
|
+
*/
|
|
5
|
+
import { type Editor, Plugin } from "@ckeditor/ckeditor5-core";
|
|
6
6
|
/**
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
7
|
+
* A utility plugin for email integration that provides logging functionality
|
|
8
|
+
* and checks for unsupported plugins and color values.
|
|
9
|
+
*/
|
|
10
10
|
export declare class EmailConfigurationLogger extends Plugin {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
11
|
+
/**
|
|
12
|
+
* @inheritDoc
|
|
13
|
+
*/
|
|
14
|
+
static get pluginName(): "EmailConfigurationLogger";
|
|
15
|
+
/**
|
|
16
|
+
* @inheritDoc
|
|
17
|
+
*/
|
|
18
|
+
static override get isOfficialPlugin(): true;
|
|
19
|
+
/**
|
|
20
|
+
* @inheritDoc
|
|
21
|
+
*/
|
|
22
|
+
static override get isPremiumPlugin(): true;
|
|
23
|
+
/**
|
|
24
|
+
* @inheritDoc
|
|
25
|
+
*/
|
|
26
|
+
constructor(editor: Editor);
|
|
27
|
+
/**
|
|
28
|
+
* @inheritDoc
|
|
29
|
+
*/
|
|
30
|
+
afterInit(): void;
|
|
31
31
|
}
|
|
32
32
|
/**
|
|
33
|
-
|
|
34
|
-
|
|
33
|
+
* Checks if the given color value is not supported in email clients.
|
|
34
|
+
*/
|
|
35
35
|
export declare function isUnsupportedEmailColorValue(color: string | undefined): boolean;
|
|
36
36
|
/**
|
|
37
|
-
|
|
38
|
-
|
|
37
|
+
* Checks if the given color format is not supported in email clients.
|
|
38
|
+
*/
|
|
39
39
|
export declare function isUnsupportedEmailColorFormat(color: string | undefined): boolean;
|
|
@@ -1,51 +1,51 @@
|
|
|
1
1
|
/**
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
2
|
+
* @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
|
|
3
|
+
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
4
|
+
*/
|
|
5
5
|
/**
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
import type { ExportInlineStylesTransformation } from
|
|
6
|
+
* @module email/emailinlinestylestransformations
|
|
7
|
+
* @publicApi
|
|
8
|
+
*/
|
|
9
|
+
import type { ExportInlineStylesTransformation } from "@ckeditor/ckeditor5-export-inline-styles";
|
|
10
10
|
/**
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
11
|
+
* Returns a collection of style property transformations designed for email compatibility.
|
|
12
|
+
*
|
|
13
|
+
* These transformations convert modern CSS styles into HTML attributes better
|
|
14
|
+
* supported by email clients. The transformations focus on converting alignment-related
|
|
15
|
+
* CSS properties into corresponding HTML attributes.
|
|
16
|
+
*
|
|
17
|
+
* Examples of transformations:
|
|
18
|
+
*
|
|
19
|
+
* 1. Float to align:
|
|
20
|
+
* * `<img style="float: left">` → `<img align="left">`
|
|
21
|
+
*
|
|
22
|
+
* 2. Shorthand margin for centering:
|
|
23
|
+
* * `<table style="margin: auto"></table>` →
|
|
24
|
+
* `<table width="100%"><tr><td align="center"><table style="..."></table></td></tr></table>`
|
|
25
|
+
*
|
|
26
|
+
* Note:
|
|
27
|
+
*
|
|
28
|
+
* * The `align` attribute is only applied to the `img` elements.
|
|
29
|
+
* * Tables aligned via margins are wrapped in a container table to ensure proper positioning in all email clients.
|
|
30
|
+
* * The `align` attribute overrides any existing alignment attributes on these elements.
|
|
31
|
+
* * If the `float` and `margin` are present, the `float` property takes precedence for alignment.
|
|
32
|
+
* * The style attributes remain unchanged.
|
|
33
|
+
*
|
|
34
|
+
* @param options Configuration options.
|
|
35
|
+
* @param options.useFigureToTableFallback Enables the transformation of figure elements into tables.
|
|
36
|
+
* This option allows using block images in older email clients but causes additional
|
|
37
|
+
* wrapping of elements with tables and might affect the layout.
|
|
38
|
+
* @returns An array of transformations to be applied to style properties for email compatibility.
|
|
39
|
+
*/
|
|
40
40
|
export declare function getEmailInlineStylesTransformations(options?: EmailInlineStylesTransformationsOptions): Array<ExportInlineStylesTransformation>;
|
|
41
41
|
/**
|
|
42
|
-
|
|
43
|
-
|
|
42
|
+
* Configuration options for email inline styles transformations.
|
|
43
|
+
*/
|
|
44
44
|
export interface EmailInlineStylesTransformationsOptions {
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
45
|
+
/**
|
|
46
|
+
* Enables the transformation of `<figure>` elements into `tables`.
|
|
47
|
+
*
|
|
48
|
+
* This option allows using block images in older email clients but causes additional wrapping of elements with tables.
|
|
49
|
+
*/
|
|
50
|
+
useFigureToTableFallback?: boolean;
|
|
51
51
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -1,37 +1,37 @@
|
|
|
1
1
|
/**
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
2
|
+
* @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
|
|
3
|
+
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
4
|
+
*/
|
|
5
5
|
/**
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
export { EmailConfigurationHelper } from
|
|
9
|
-
export { EmailConfigurationLogger, isUnsupportedEmailColorValue, isUnsupportedEmailColorFormat } from
|
|
10
|
-
export { EmptyBlockEmailIntegration } from
|
|
11
|
-
export { ExportInlineStylesEmailIntegration } from
|
|
12
|
-
export { FontEmailIntegration } from
|
|
13
|
-
export { GeneralHtmlIntegrationSupport } from
|
|
14
|
-
export { HighlightEmailIntegration } from
|
|
15
|
-
export { ImageEmailIntegration } from
|
|
16
|
-
export { LinkEmailIntegration } from
|
|
17
|
-
export { ListEmailIntegration } from
|
|
18
|
-
export { MultiLevelListEmailIntegration } from
|
|
19
|
-
export { MediaEmbedEmailIntegration } from
|
|
20
|
-
export { MergeFieldsEmailIntegration } from
|
|
21
|
-
export { TableEmailIntegration } from
|
|
22
|
-
export { MathTypeEmailIntegration } from
|
|
23
|
-
export { SourceEditingEmailIntegration } from
|
|
24
|
-
export { MarkdownEmailIntegration } from
|
|
25
|
-
export { TemplateEmailIntegration } from
|
|
26
|
-
export { TodoListEmailIntegration } from
|
|
27
|
-
export { UploadEmailIntegration } from
|
|
28
|
-
export { getEmailInlineStylesTransformations, type EmailInlineStylesTransformationsOptions } from
|
|
29
|
-
export { transformEmailFigureToTable } from
|
|
30
|
-
export { transformEmailFloatToAlign } from
|
|
31
|
-
export { transformEmailImageWidthAttributes } from
|
|
32
|
-
export { transformEmailMarginToAlign } from
|
|
33
|
-
export { transformEmailFigcaptionToDiv } from
|
|
34
|
-
export { transformEmailAlignToAttribute } from
|
|
35
|
-
export { transformEmailColumnWidthsToCells } from
|
|
36
|
-
export type { EmailConfigurationConfig } from
|
|
37
|
-
import
|
|
6
|
+
* @module email
|
|
7
|
+
*/
|
|
8
|
+
export { EmailConfigurationHelper } from "./emailconfigurationhelper.js";
|
|
9
|
+
export { EmailConfigurationLogger, isUnsupportedEmailColorValue, isUnsupportedEmailColorFormat } from "./emailconfigurationlogger.js";
|
|
10
|
+
export { EmptyBlockEmailIntegration } from "./integrations/emptyblock.js";
|
|
11
|
+
export { ExportInlineStylesEmailIntegration } from "./integrations/exportinlinestyles.js";
|
|
12
|
+
export { FontEmailIntegration } from "./integrations/font.js";
|
|
13
|
+
export { GeneralHtmlIntegrationSupport } from "./integrations/generalhtmlintegration.js";
|
|
14
|
+
export { HighlightEmailIntegration } from "./integrations/highlight.js";
|
|
15
|
+
export { ImageEmailIntegration } from "./integrations/image.js";
|
|
16
|
+
export { LinkEmailIntegration } from "./integrations/link.js";
|
|
17
|
+
export { ListEmailIntegration } from "./integrations/list.js";
|
|
18
|
+
export { MultiLevelListEmailIntegration } from "./integrations/listmultilevel.js";
|
|
19
|
+
export { MediaEmbedEmailIntegration } from "./integrations/mediaembed.js";
|
|
20
|
+
export { MergeFieldsEmailIntegration } from "./integrations/mergefields.js";
|
|
21
|
+
export { TableEmailIntegration } from "./integrations/table.js";
|
|
22
|
+
export { MathTypeEmailIntegration } from "./integrations/mathtype.js";
|
|
23
|
+
export { SourceEditingEmailIntegration } from "./integrations/sourceediting.js";
|
|
24
|
+
export { MarkdownEmailIntegration } from "./integrations/markdown.js";
|
|
25
|
+
export { TemplateEmailIntegration } from "./integrations/template.js";
|
|
26
|
+
export { TodoListEmailIntegration } from "./integrations/todolist.js";
|
|
27
|
+
export { UploadEmailIntegration } from "./integrations/upload.js";
|
|
28
|
+
export { getEmailInlineStylesTransformations, type EmailInlineStylesTransformationsOptions } from "./emailinlinestylestransformations.js";
|
|
29
|
+
export { transformEmailFigureToTable } from "./transformations/transformemailfiguretotable.js";
|
|
30
|
+
export { transformEmailFloatToAlign } from "./transformations/transformemailfloattoalign.js";
|
|
31
|
+
export { transformEmailImageWidthAttributes } from "./transformations/transformemailimagewidthattributes.js";
|
|
32
|
+
export { transformEmailMarginToAlign } from "./transformations/transformemailmargintoalign.js";
|
|
33
|
+
export { transformEmailFigcaptionToDiv } from "./transformations/transformemailfigcaptiontodiv.js";
|
|
34
|
+
export { transformEmailAlignToAttribute } from "./transformations/transformemailaligntoattribute.js";
|
|
35
|
+
export { transformEmailColumnWidthsToCells } from "./transformations/transformemailcolumnwidthstocells.js";
|
|
36
|
+
export type { EmailConfigurationConfig } from "./emailconfigurationconfig.js";
|
|
37
|
+
import "./augmentation.js";
|