@travetto/email-inky 5.0.0-rc.1 → 5.0.0-rc.3

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/jsx-runtime.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { ConcreteClass } from '@travetto/base';
1
+ import { ConcreteClass } from '@travetto/runtime';
2
2
  import { EmailTemplateModule, EmailTemplateLocation } from '@travetto/email';
3
3
 
4
4
  export type JSXChild = JSXElement | number | bigint | boolean | object | string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@travetto/email-inky",
3
- "version": "5.0.0-rc.1",
3
+ "version": "5.0.0-rc.3",
4
4
  "description": "Email Inky templating module",
5
5
  "keywords": [
6
6
  "email",
@@ -27,14 +27,14 @@
27
27
  "directory": "module/email-inky"
28
28
  },
29
29
  "dependencies": {
30
- "@travetto/base": "^5.0.0-rc.1",
31
- "@travetto/config": "^5.0.0-rc.1",
32
- "@travetto/di": "^5.0.0-rc.0",
33
- "@travetto/email": "^5.0.0-rc.1",
30
+ "@travetto/runtime": "^5.0.0-rc.3",
31
+ "@travetto/config": "^5.0.0-rc.3",
32
+ "@travetto/di": "^5.0.0-rc.3",
33
+ "@travetto/email": "^5.0.0-rc.3",
34
34
  "foundation-emails": "^2.4.0"
35
35
  },
36
36
  "devDependencies": {
37
- "@travetto/email-compiler": "^5.0.0-rc.1"
37
+ "@travetto/email-compiler": "^5.0.0-rc.3"
38
38
  },
39
39
  "peerDependenciesMeta": {
40
40
  "@travetto/cli": {
package/src/components.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import { JSXElement, JSXComponentFunction as CompFn } from '@travetto/email-inky/jsx-runtime';
2
- import { TypedObject } from '@travetto/base';
2
+ import { TypedObject } from '@travetto/runtime';
3
3
 
4
4
  const EMPTY: JSXElement = { type: '', key: '', props: {} };
5
5
 
@@ -1,5 +1,5 @@
1
1
  import { createElement } from '@travetto/email-inky/jsx-runtime';
2
- import { FileLoader } from '@travetto/base';
2
+ import { FileLoader } from '@travetto/runtime';
3
3
  import { EmailTemplateLocation, EmailResourceLoader } from '@travetto/email';
4
4
 
5
5
  import { JSXElementByFn, c } from '../components';