@cedarjs/mailer-core 5.0.7-next.239 → 5.0.7-next.310
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/mailer.js +1 -1
- package/dist/renderer.d.ts +7 -1
- package/dist/renderer.d.ts.map +1 -1
- package/package.json +3 -3
package/dist/mailer.js
CHANGED
package/dist/renderer.d.ts
CHANGED
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
import type { MailUtilities, MailRenderedContent, MailRendererOptions } from './types.js';
|
|
2
2
|
export declare abstract class AbstractMailRenderer {
|
|
3
|
-
|
|
3
|
+
/**
|
|
4
|
+
* Render a template.
|
|
5
|
+
*
|
|
6
|
+
* May be async. The `<Tailwind>` component for example suspend while it
|
|
7
|
+
* computes it styles, so it cannot be rendered synchronously at all.
|
|
8
|
+
*/
|
|
9
|
+
abstract render(template: unknown, options: MailRendererOptions<unknown>, utilities?: MailUtilities): MailRenderedContent | Promise<MailRenderedContent>;
|
|
4
10
|
abstract internal(): Record<string, unknown>;
|
|
5
11
|
}
|
|
6
12
|
//# sourceMappingURL=renderer.d.ts.map
|
package/dist/renderer.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"renderer.d.ts","sourceRoot":"","sources":["../src/renderer.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,aAAa,EACb,mBAAmB,EACnB,mBAAmB,EACpB,MAAM,YAAY,CAAA;AAEnB,8BAAsB,oBAAoB;
|
|
1
|
+
{"version":3,"file":"renderer.d.ts","sourceRoot":"","sources":["../src/renderer.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,aAAa,EACb,mBAAmB,EACnB,mBAAmB,EACpB,MAAM,YAAY,CAAA;AAEnB,8BAAsB,oBAAoB;IACxC;;;;;OAKG;IACH,QAAQ,CAAC,MAAM,CACb,QAAQ,EAAE,OAAO,EACjB,OAAO,EAAE,mBAAmB,CAAC,OAAO,CAAC,EACrC,SAAS,CAAC,EAAE,aAAa,GACxB,mBAAmB,GAAG,OAAO,CAAC,mBAAmB,CAAC;IAGrD,QAAQ,CAAC,QAAQ,IAAI,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC;CAC7C"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cedarjs/mailer-core",
|
|
3
|
-
"version": "5.0.7-next.
|
|
3
|
+
"version": "5.0.7-next.310",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+https://github.com/cedarjs/cedar.git",
|
|
@@ -23,8 +23,8 @@
|
|
|
23
23
|
"test:watch": "vitest watch"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
|
-
"@cedarjs/api": "5.0.7-next.
|
|
27
|
-
"@cedarjs/framework-tools": "5.0.7-next.
|
|
26
|
+
"@cedarjs/api": "5.0.7-next.310",
|
|
27
|
+
"@cedarjs/framework-tools": "5.0.7-next.310",
|
|
28
28
|
"typescript": "5.9.3",
|
|
29
29
|
"vitest": "4.1.10"
|
|
30
30
|
},
|