@pagenflow/email 1.4.4 → 1.4.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/dist/components/Button.d.ts +4 -0
- package/dist/components/Column.d.ts +1 -1
- package/dist/components/Container.d.ts +1 -1
- package/dist/components/Image.d.ts +8 -0
- package/dist/components/Row.d.ts +1 -1
- package/dist/components/Section.d.ts +1 -1
- package/dist/components/Text.d.ts +2 -1
- package/dist/index.cjs.js +5 -3
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +5 -3
- package/dist/index.esm.js.map +1 -1
- package/dist/types/IInnerLink.d.ts +17 -0
- package/package.json +1 -1
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
export type CalendarProvider = "google" | "outlook" | "office365" | "yahoo" | "ics";
|
|
2
|
+
export interface ICalendarLink {
|
|
3
|
+
calendarProvider?: CalendarProvider;
|
|
4
|
+
calendarTitle?: string;
|
|
5
|
+
calendarStart?: string;
|
|
6
|
+
calendarEnd?: string;
|
|
7
|
+
calendarAllDay?: boolean;
|
|
8
|
+
calendarDescription?: string;
|
|
9
|
+
calendarLocation?: string;
|
|
10
|
+
}
|
|
1
11
|
export type InnerLinkType = "none" | "anchor" | "url" | "email" | "phone" | "page_top" | "page_bottom";
|
|
2
12
|
export default interface IInnerLink {
|
|
3
13
|
type: InnerLinkType;
|
|
@@ -6,4 +16,11 @@ export default interface IInnerLink {
|
|
|
6
16
|
url?: string;
|
|
7
17
|
anchor?: string;
|
|
8
18
|
target?: "_blank" | "_self" | "_parent" | "_top";
|
|
19
|
+
calendarProvider?: CalendarProvider;
|
|
20
|
+
calendarTitle?: string;
|
|
21
|
+
calendarStart?: string;
|
|
22
|
+
calendarEnd?: string;
|
|
23
|
+
calendarAllDay?: boolean;
|
|
24
|
+
calendarDescription?: string;
|
|
25
|
+
calendarLocation?: string;
|
|
9
26
|
}
|