@mjmx/core 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 +191 -0
- package/dist/chunk-SUL5BGGO.js +44 -0
- package/dist/chunk-SUL5BGGO.js.map +1 -0
- package/dist/index.cjs +147 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +11 -0
- package/dist/index.d.ts +11 -0
- package/dist/index.js +76 -0
- package/dist/index.js.map +1 -0
- package/dist/jsx-dev-runtime-Dg-2Ex6t.d.cts +435 -0
- package/dist/jsx-dev-runtime-Dg-2Ex6t.d.ts +435 -0
- package/dist/jsx-dev-runtime.cjs +70 -0
- package/dist/jsx-dev-runtime.cjs.map +1 -0
- package/dist/jsx-dev-runtime.d.cts +1 -0
- package/dist/jsx-dev-runtime.d.ts +1 -0
- package/dist/jsx-dev-runtime.js +12 -0
- package/dist/jsx-dev-runtime.js.map +1 -0
- package/dist/jsx-runtime.cjs +68 -0
- package/dist/jsx-runtime.cjs.map +1 -0
- package/dist/jsx-runtime.d.cts +1 -0
- package/dist/jsx-runtime.d.ts +1 -0
- package/dist/jsx-runtime.js +11 -0
- package/dist/jsx-runtime.js.map +1 -0
- package/package.json +99 -0
|
@@ -0,0 +1,435 @@
|
|
|
1
|
+
declare const MJML_NODE_TYPE: unique symbol;
|
|
2
|
+
declare const Fragment: unique symbol;
|
|
3
|
+
interface MjmlNode {
|
|
4
|
+
readonly $$typeof: typeof MJML_NODE_TYPE;
|
|
5
|
+
readonly tag: string | typeof Fragment;
|
|
6
|
+
readonly attributes: Record<string, string | undefined>;
|
|
7
|
+
readonly children: MjmlChild[];
|
|
8
|
+
}
|
|
9
|
+
type MjmlChild = MjmlNode | string | number | boolean | null | undefined | MjmlChild[];
|
|
10
|
+
|
|
11
|
+
type CSSPixel = `${number}px` | `${number}`;
|
|
12
|
+
type CSSUnit = CSSPixel;
|
|
13
|
+
type CSSSpacing = CSSUnit | `${CSSUnit} ${CSSUnit}` | `${CSSUnit} ${CSSUnit} ${CSSUnit}` | `${CSSUnit} ${CSSUnit} ${CSSUnit} ${CSSUnit}`;
|
|
14
|
+
type CSSWidth = CSSPixel | `${number}%`;
|
|
15
|
+
type HexColor = `#${string}`;
|
|
16
|
+
type Color = HexColor | (string & {});
|
|
17
|
+
type URLString = URL | (string & {});
|
|
18
|
+
type Align = 'left' | 'center' | 'right';
|
|
19
|
+
type VerticalAlign = 'top' | 'middle' | 'bottom';
|
|
20
|
+
type Direction = 'ltr' | 'rtl';
|
|
21
|
+
interface PaddingProps {
|
|
22
|
+
padding?: CSSSpacing;
|
|
23
|
+
'padding-top'?: CSSUnit;
|
|
24
|
+
'padding-bottom'?: CSSUnit;
|
|
25
|
+
'padding-left'?: CSSUnit;
|
|
26
|
+
'padding-right'?: CSSUnit;
|
|
27
|
+
}
|
|
28
|
+
interface BorderProps {
|
|
29
|
+
border?: string;
|
|
30
|
+
'border-bottom'?: string;
|
|
31
|
+
'border-left'?: string;
|
|
32
|
+
'border-right'?: string;
|
|
33
|
+
'border-top'?: string;
|
|
34
|
+
'border-radius'?: CSSUnit;
|
|
35
|
+
}
|
|
36
|
+
interface MjmlAttributes {
|
|
37
|
+
owa?: string;
|
|
38
|
+
lang?: string;
|
|
39
|
+
dir?: Direction | 'auto';
|
|
40
|
+
}
|
|
41
|
+
interface MjHeadAttributes {
|
|
42
|
+
}
|
|
43
|
+
interface MjBodyAttributes {
|
|
44
|
+
'background-color'?: Color;
|
|
45
|
+
width?: CSSWidth;
|
|
46
|
+
'css-class'?: string;
|
|
47
|
+
}
|
|
48
|
+
interface MjAttributesAttributes {
|
|
49
|
+
}
|
|
50
|
+
interface MjBreakpointAttributes {
|
|
51
|
+
width: CSSUnit;
|
|
52
|
+
}
|
|
53
|
+
interface MjFontAttributes {
|
|
54
|
+
href: URLString;
|
|
55
|
+
name: string;
|
|
56
|
+
}
|
|
57
|
+
interface MjHtmlAttributesAttributes {
|
|
58
|
+
}
|
|
59
|
+
interface MjPreviewAttributes {
|
|
60
|
+
}
|
|
61
|
+
interface MjStyleAttributes {
|
|
62
|
+
inline?: 'inline';
|
|
63
|
+
}
|
|
64
|
+
interface MjTitleAttributes {
|
|
65
|
+
}
|
|
66
|
+
interface MjAllAttributes {
|
|
67
|
+
[key: string]: string | undefined;
|
|
68
|
+
}
|
|
69
|
+
interface MjClassAttributes {
|
|
70
|
+
name: string;
|
|
71
|
+
[key: string]: string | undefined;
|
|
72
|
+
}
|
|
73
|
+
interface MjAccordionAttributes extends PaddingProps {
|
|
74
|
+
border?: string;
|
|
75
|
+
'font-family'?: string;
|
|
76
|
+
'icon-align'?: Align;
|
|
77
|
+
'icon-height'?: CSSUnit;
|
|
78
|
+
'icon-position'?: 'left' | 'right';
|
|
79
|
+
'icon-unwrapped-alt'?: string;
|
|
80
|
+
'icon-unwrapped-url'?: URLString;
|
|
81
|
+
'icon-width'?: CSSUnit;
|
|
82
|
+
'icon-wrapped-alt'?: string;
|
|
83
|
+
'icon-wrapped-url'?: URLString;
|
|
84
|
+
'css-class'?: string;
|
|
85
|
+
}
|
|
86
|
+
interface MjAccordionElementAttributes {
|
|
87
|
+
'background-color'?: Color;
|
|
88
|
+
border?: string;
|
|
89
|
+
'font-family'?: string;
|
|
90
|
+
'icon-align'?: Align;
|
|
91
|
+
'icon-height'?: CSSUnit;
|
|
92
|
+
'icon-position'?: 'left' | 'right';
|
|
93
|
+
'icon-unwrapped-alt'?: string;
|
|
94
|
+
'icon-unwrapped-url'?: URLString;
|
|
95
|
+
'icon-width'?: CSSUnit;
|
|
96
|
+
'icon-wrapped-alt'?: string;
|
|
97
|
+
'icon-wrapped-url'?: URLString;
|
|
98
|
+
'css-class'?: string;
|
|
99
|
+
}
|
|
100
|
+
interface MjAccordionTitleAttributes extends PaddingProps {
|
|
101
|
+
'background-color'?: Color;
|
|
102
|
+
color?: Color;
|
|
103
|
+
'font-family'?: string;
|
|
104
|
+
'font-size'?: CSSUnit;
|
|
105
|
+
'css-class'?: string;
|
|
106
|
+
}
|
|
107
|
+
interface MjAccordionTextAttributes extends PaddingProps {
|
|
108
|
+
'background-color'?: Color;
|
|
109
|
+
color?: Color;
|
|
110
|
+
'font-family'?: string;
|
|
111
|
+
'font-size'?: CSSUnit;
|
|
112
|
+
'font-weight'?: string;
|
|
113
|
+
'letter-spacing'?: CSSUnit;
|
|
114
|
+
'line-height'?: CSSUnit;
|
|
115
|
+
'css-class'?: string;
|
|
116
|
+
}
|
|
117
|
+
interface MjButtonAttributes extends PaddingProps, BorderProps {
|
|
118
|
+
align?: Align;
|
|
119
|
+
'background-color'?: Color;
|
|
120
|
+
color?: Color;
|
|
121
|
+
'container-background-color'?: Color;
|
|
122
|
+
'font-family'?: string;
|
|
123
|
+
'font-size'?: CSSUnit;
|
|
124
|
+
'font-style'?: string;
|
|
125
|
+
'font-weight'?: string;
|
|
126
|
+
height?: CSSUnit;
|
|
127
|
+
href?: URLString;
|
|
128
|
+
'inner-padding'?: CSSSpacing;
|
|
129
|
+
'letter-spacing'?: CSSUnit;
|
|
130
|
+
'line-height'?: CSSUnit;
|
|
131
|
+
rel?: string;
|
|
132
|
+
target?: string;
|
|
133
|
+
'text-align'?: Align;
|
|
134
|
+
'text-decoration'?: string;
|
|
135
|
+
'text-transform'?: string;
|
|
136
|
+
title?: string;
|
|
137
|
+
'vertical-align'?: VerticalAlign;
|
|
138
|
+
width?: CSSWidth;
|
|
139
|
+
'css-class'?: string;
|
|
140
|
+
}
|
|
141
|
+
interface MjCarouselAttributes {
|
|
142
|
+
align?: Align;
|
|
143
|
+
'background-color'?: Color;
|
|
144
|
+
'border-radius'?: CSSUnit;
|
|
145
|
+
'icon-width'?: CSSUnit;
|
|
146
|
+
'left-icon'?: URLString;
|
|
147
|
+
'right-icon'?: URLString;
|
|
148
|
+
thumbnails?: 'visible' | 'hidden';
|
|
149
|
+
'tb-border'?: string;
|
|
150
|
+
'tb-border-radius'?: CSSUnit;
|
|
151
|
+
'tb-hover-border-color'?: Color;
|
|
152
|
+
'tb-selected-border-color'?: Color;
|
|
153
|
+
'tb-width'?: CSSUnit;
|
|
154
|
+
'css-class'?: string;
|
|
155
|
+
}
|
|
156
|
+
interface MjCarouselImageAttributes {
|
|
157
|
+
alt?: string;
|
|
158
|
+
href?: URLString;
|
|
159
|
+
rel?: string;
|
|
160
|
+
src: URLString;
|
|
161
|
+
target?: string;
|
|
162
|
+
'thumbnails-src'?: URLString;
|
|
163
|
+
title?: string;
|
|
164
|
+
'css-class'?: string;
|
|
165
|
+
}
|
|
166
|
+
interface MjColumnAttributes extends PaddingProps, BorderProps {
|
|
167
|
+
'background-color'?: Color;
|
|
168
|
+
'inner-background-color'?: Color;
|
|
169
|
+
'inner-border'?: string;
|
|
170
|
+
'inner-border-bottom'?: string;
|
|
171
|
+
'inner-border-left'?: string;
|
|
172
|
+
'inner-border-radius'?: CSSUnit;
|
|
173
|
+
'inner-border-right'?: string;
|
|
174
|
+
'inner-border-top'?: string;
|
|
175
|
+
'vertical-align'?: VerticalAlign;
|
|
176
|
+
width?: CSSWidth;
|
|
177
|
+
'css-class'?: string;
|
|
178
|
+
}
|
|
179
|
+
interface MjDividerAttributes extends PaddingProps {
|
|
180
|
+
'border-color'?: Color;
|
|
181
|
+
'border-style'?: string;
|
|
182
|
+
'border-width'?: CSSUnit;
|
|
183
|
+
'container-background-color'?: Color;
|
|
184
|
+
width?: CSSWidth;
|
|
185
|
+
align?: Align;
|
|
186
|
+
'css-class'?: string;
|
|
187
|
+
}
|
|
188
|
+
interface MjGroupAttributes {
|
|
189
|
+
'background-color'?: Color;
|
|
190
|
+
direction?: Direction;
|
|
191
|
+
'vertical-align'?: VerticalAlign;
|
|
192
|
+
width?: CSSWidth;
|
|
193
|
+
'css-class'?: string;
|
|
194
|
+
}
|
|
195
|
+
interface MjHeroAttributes extends PaddingProps, BorderProps {
|
|
196
|
+
'background-color'?: Color;
|
|
197
|
+
'background-height'?: CSSUnit;
|
|
198
|
+
'background-position'?: string;
|
|
199
|
+
'background-url'?: URLString;
|
|
200
|
+
'background-width'?: CSSUnit;
|
|
201
|
+
height?: CSSUnit;
|
|
202
|
+
mode?: 'fixed-height' | 'fluid-height';
|
|
203
|
+
'vertical-align'?: VerticalAlign;
|
|
204
|
+
width?: CSSWidth;
|
|
205
|
+
'css-class'?: string;
|
|
206
|
+
}
|
|
207
|
+
interface MjImageAttributes extends PaddingProps, BorderProps {
|
|
208
|
+
align?: Align;
|
|
209
|
+
alt?: string;
|
|
210
|
+
'container-background-color'?: Color;
|
|
211
|
+
'fluid-on-mobile'?: 'true' | 'false';
|
|
212
|
+
height?: CSSUnit;
|
|
213
|
+
href?: URLString;
|
|
214
|
+
name?: string;
|
|
215
|
+
rel?: string;
|
|
216
|
+
sizes?: string;
|
|
217
|
+
src?: URLString;
|
|
218
|
+
srcset?: string;
|
|
219
|
+
target?: string;
|
|
220
|
+
title?: string;
|
|
221
|
+
usemap?: string;
|
|
222
|
+
width?: CSSWidth;
|
|
223
|
+
'css-class'?: string;
|
|
224
|
+
}
|
|
225
|
+
interface MjNavbarAttributes {
|
|
226
|
+
align?: Align;
|
|
227
|
+
'base-url'?: URLString;
|
|
228
|
+
hamburger?: 'hamburger';
|
|
229
|
+
'ico-align'?: Align;
|
|
230
|
+
'ico-close'?: string;
|
|
231
|
+
'ico-color'?: Color;
|
|
232
|
+
'ico-font-family'?: string;
|
|
233
|
+
'ico-font-size'?: CSSUnit;
|
|
234
|
+
'ico-line-height'?: CSSUnit;
|
|
235
|
+
'ico-open'?: string;
|
|
236
|
+
'ico-padding'?: CSSSpacing;
|
|
237
|
+
'ico-padding-bottom'?: CSSUnit;
|
|
238
|
+
'ico-padding-left'?: CSSUnit;
|
|
239
|
+
'ico-padding-right'?: CSSUnit;
|
|
240
|
+
'ico-padding-top'?: CSSUnit;
|
|
241
|
+
'ico-text-decoration'?: string;
|
|
242
|
+
'ico-text-transform'?: string;
|
|
243
|
+
'css-class'?: string;
|
|
244
|
+
}
|
|
245
|
+
interface MjNavbarLinkAttributes extends PaddingProps {
|
|
246
|
+
color?: Color;
|
|
247
|
+
'font-family'?: string;
|
|
248
|
+
'font-size'?: CSSUnit;
|
|
249
|
+
'font-style'?: string;
|
|
250
|
+
'font-weight'?: string;
|
|
251
|
+
href?: URLString;
|
|
252
|
+
'letter-spacing'?: CSSUnit;
|
|
253
|
+
'line-height'?: CSSUnit;
|
|
254
|
+
rel?: string;
|
|
255
|
+
target?: string;
|
|
256
|
+
'text-decoration'?: string;
|
|
257
|
+
'text-transform'?: string;
|
|
258
|
+
'css-class'?: string;
|
|
259
|
+
}
|
|
260
|
+
interface MjRawAttributes {
|
|
261
|
+
position?: 'file-start';
|
|
262
|
+
}
|
|
263
|
+
interface MjSectionAttributes extends PaddingProps, BorderProps {
|
|
264
|
+
'background-color'?: Color;
|
|
265
|
+
'background-position'?: string;
|
|
266
|
+
'background-position-x'?: string;
|
|
267
|
+
'background-position-y'?: string;
|
|
268
|
+
'background-repeat'?: 'repeat' | 'no-repeat';
|
|
269
|
+
'background-size'?: string;
|
|
270
|
+
'background-url'?: URLString;
|
|
271
|
+
direction?: Direction;
|
|
272
|
+
'full-width'?: 'full-width';
|
|
273
|
+
'text-align'?: Align;
|
|
274
|
+
'css-class'?: string;
|
|
275
|
+
}
|
|
276
|
+
interface MjSocialAttributes extends PaddingProps {
|
|
277
|
+
align?: Align;
|
|
278
|
+
'border-radius'?: CSSUnit;
|
|
279
|
+
color?: Color;
|
|
280
|
+
'container-background-color'?: Color;
|
|
281
|
+
'font-family'?: string;
|
|
282
|
+
'font-size'?: CSSUnit;
|
|
283
|
+
'font-style'?: string;
|
|
284
|
+
'font-weight'?: string;
|
|
285
|
+
'icon-height'?: CSSUnit;
|
|
286
|
+
'icon-padding'?: CSSSpacing;
|
|
287
|
+
'icon-size'?: CSSUnit;
|
|
288
|
+
'inner-padding'?: CSSSpacing;
|
|
289
|
+
'line-height'?: CSSUnit;
|
|
290
|
+
mode?: 'horizontal' | 'vertical';
|
|
291
|
+
'text-decoration'?: string;
|
|
292
|
+
'text-padding'?: CSSSpacing;
|
|
293
|
+
'css-class'?: string;
|
|
294
|
+
}
|
|
295
|
+
interface MjSocialElementAttributes extends PaddingProps {
|
|
296
|
+
align?: Align;
|
|
297
|
+
alt?: string;
|
|
298
|
+
'background-color'?: Color;
|
|
299
|
+
'border-radius'?: CSSUnit;
|
|
300
|
+
color?: Color;
|
|
301
|
+
'font-family'?: string;
|
|
302
|
+
'font-size'?: CSSUnit;
|
|
303
|
+
'font-style'?: string;
|
|
304
|
+
'font-weight'?: string;
|
|
305
|
+
href?: URLString;
|
|
306
|
+
'icon-height'?: CSSUnit;
|
|
307
|
+
'icon-padding'?: CSSSpacing;
|
|
308
|
+
'icon-size'?: CSSUnit;
|
|
309
|
+
'line-height'?: CSSUnit;
|
|
310
|
+
name?: 'facebook' | 'facebook-noshare' | 'twitter' | 'twitter-noshare' | 'x' | 'x-noshare' | 'google' | 'google-noshare' | 'pinterest' | 'pinterest-noshare' | 'linkedin' | 'linkedin-noshare' | 'instagram' | 'web' | 'snapchat' | 'youtube' | 'tumblr' | 'tumblr-noshare' | 'github' | 'xing' | 'xing-noshare' | 'vimeo' | 'medium' | 'soundcloud' | 'dribbble' | (string & {});
|
|
311
|
+
rel?: string;
|
|
312
|
+
sizes?: string;
|
|
313
|
+
src?: URLString;
|
|
314
|
+
srcset?: string;
|
|
315
|
+
target?: string;
|
|
316
|
+
title?: string;
|
|
317
|
+
'text-decoration'?: string;
|
|
318
|
+
'vertical-align'?: VerticalAlign;
|
|
319
|
+
'css-class'?: string;
|
|
320
|
+
}
|
|
321
|
+
interface MjSpacerAttributes extends PaddingProps {
|
|
322
|
+
'container-background-color'?: Color;
|
|
323
|
+
height?: CSSUnit;
|
|
324
|
+
'css-class'?: string;
|
|
325
|
+
}
|
|
326
|
+
interface MjTableAttributes extends PaddingProps {
|
|
327
|
+
align?: Align;
|
|
328
|
+
border?: string;
|
|
329
|
+
cellpadding?: string;
|
|
330
|
+
cellspacing?: string;
|
|
331
|
+
color?: Color;
|
|
332
|
+
'container-background-color'?: Color;
|
|
333
|
+
'font-family'?: string;
|
|
334
|
+
'font-size'?: CSSUnit;
|
|
335
|
+
'font-style'?: string;
|
|
336
|
+
'font-weight'?: string;
|
|
337
|
+
'line-height'?: CSSUnit;
|
|
338
|
+
role?: 'presentation' | 'none';
|
|
339
|
+
'table-layout'?: 'auto' | 'fixed' | 'initial' | 'inherit';
|
|
340
|
+
width?: CSSWidth;
|
|
341
|
+
'css-class'?: string;
|
|
342
|
+
}
|
|
343
|
+
interface MjTextAttributes extends PaddingProps {
|
|
344
|
+
align?: Align;
|
|
345
|
+
color?: Color;
|
|
346
|
+
'container-background-color'?: Color;
|
|
347
|
+
'font-family'?: string;
|
|
348
|
+
'font-size'?: CSSUnit;
|
|
349
|
+
'font-style'?: string;
|
|
350
|
+
'font-weight'?: string;
|
|
351
|
+
height?: CSSUnit;
|
|
352
|
+
'letter-spacing'?: CSSUnit;
|
|
353
|
+
'line-height'?: CSSUnit;
|
|
354
|
+
'text-decoration'?: string;
|
|
355
|
+
'text-transform'?: string;
|
|
356
|
+
'css-class'?: string;
|
|
357
|
+
}
|
|
358
|
+
interface MjWrapperAttributes extends PaddingProps, BorderProps {
|
|
359
|
+
'background-color'?: Color;
|
|
360
|
+
'background-position'?: string;
|
|
361
|
+
'background-position-x'?: string;
|
|
362
|
+
'background-position-y'?: string;
|
|
363
|
+
'background-repeat'?: 'repeat' | 'no-repeat';
|
|
364
|
+
'background-size'?: string;
|
|
365
|
+
'background-url'?: URLString;
|
|
366
|
+
'full-width'?: 'full-width';
|
|
367
|
+
'text-align'?: Align;
|
|
368
|
+
'css-class'?: string;
|
|
369
|
+
}
|
|
370
|
+
interface MjIncludeAttributes {
|
|
371
|
+
path: string;
|
|
372
|
+
type?: 'html' | 'css' | 'mjml';
|
|
373
|
+
'css-inline'?: 'inline';
|
|
374
|
+
}
|
|
375
|
+
interface MjSelectorAttributes {
|
|
376
|
+
path: string;
|
|
377
|
+
}
|
|
378
|
+
interface MjHtmlAttributeAttributes {
|
|
379
|
+
name: string;
|
|
380
|
+
}
|
|
381
|
+
|
|
382
|
+
type PropsWithChildren<T = object> = T & {
|
|
383
|
+
children?: MjmlChild;
|
|
384
|
+
};
|
|
385
|
+
type Component = (props: any) => MjmlNode;
|
|
386
|
+
declare function jsx(tag: string | typeof Fragment | Component, props: Record<string, unknown>, _key?: string): MjmlNode;
|
|
387
|
+
declare const jsxs: typeof jsx;
|
|
388
|
+
declare namespace JSX {
|
|
389
|
+
type Element = MjmlNode;
|
|
390
|
+
type ElementType = string | typeof Fragment | Component;
|
|
391
|
+
interface ElementChildrenAttribute {
|
|
392
|
+
children: MjmlChild;
|
|
393
|
+
}
|
|
394
|
+
interface IntrinsicElements {
|
|
395
|
+
mjml: PropsWithChildren<MjmlAttributes>;
|
|
396
|
+
'mj-head': PropsWithChildren<MjHeadAttributes>;
|
|
397
|
+
'mj-body': PropsWithChildren<MjBodyAttributes>;
|
|
398
|
+
'mj-attributes': PropsWithChildren<MjAttributesAttributes>;
|
|
399
|
+
'mj-breakpoint': MjBreakpointAttributes;
|
|
400
|
+
'mj-font': MjFontAttributes;
|
|
401
|
+
'mj-html-attributes': PropsWithChildren<MjHtmlAttributesAttributes>;
|
|
402
|
+
'mj-preview': PropsWithChildren<MjPreviewAttributes>;
|
|
403
|
+
'mj-style': PropsWithChildren<MjStyleAttributes>;
|
|
404
|
+
'mj-title': PropsWithChildren<MjTitleAttributes>;
|
|
405
|
+
'mj-all': MjAllAttributes;
|
|
406
|
+
'mj-class': MjClassAttributes;
|
|
407
|
+
'mj-section': PropsWithChildren<MjSectionAttributes>;
|
|
408
|
+
'mj-column': PropsWithChildren<MjColumnAttributes>;
|
|
409
|
+
'mj-group': PropsWithChildren<MjGroupAttributes>;
|
|
410
|
+
'mj-wrapper': PropsWithChildren<MjWrapperAttributes>;
|
|
411
|
+
'mj-text': PropsWithChildren<MjTextAttributes>;
|
|
412
|
+
'mj-button': PropsWithChildren<MjButtonAttributes>;
|
|
413
|
+
'mj-image': MjImageAttributes;
|
|
414
|
+
'mj-divider': MjDividerAttributes;
|
|
415
|
+
'mj-spacer': MjSpacerAttributes;
|
|
416
|
+
'mj-table': PropsWithChildren<MjTableAttributes>;
|
|
417
|
+
'mj-raw': PropsWithChildren<MjRawAttributes>;
|
|
418
|
+
'mj-hero': PropsWithChildren<MjHeroAttributes>;
|
|
419
|
+
'mj-accordion': PropsWithChildren<MjAccordionAttributes>;
|
|
420
|
+
'mj-accordion-element': PropsWithChildren<MjAccordionElementAttributes>;
|
|
421
|
+
'mj-accordion-title': PropsWithChildren<MjAccordionTitleAttributes>;
|
|
422
|
+
'mj-accordion-text': PropsWithChildren<MjAccordionTextAttributes>;
|
|
423
|
+
'mj-carousel': PropsWithChildren<MjCarouselAttributes>;
|
|
424
|
+
'mj-carousel-image': MjCarouselImageAttributes;
|
|
425
|
+
'mj-navbar': PropsWithChildren<MjNavbarAttributes>;
|
|
426
|
+
'mj-navbar-link': PropsWithChildren<MjNavbarLinkAttributes>;
|
|
427
|
+
'mj-social': PropsWithChildren<MjSocialAttributes>;
|
|
428
|
+
'mj-social-element': PropsWithChildren<MjSocialElementAttributes>;
|
|
429
|
+
'mj-include': MjIncludeAttributes;
|
|
430
|
+
'mj-selector': PropsWithChildren<MjSelectorAttributes>;
|
|
431
|
+
'mj-html-attribute': PropsWithChildren<MjHtmlAttributeAttributes>;
|
|
432
|
+
}
|
|
433
|
+
}
|
|
434
|
+
|
|
435
|
+
export { type Align as A, type MjNavbarAttributes as B, type CSSPixel as C, type Direction as D, type MjNavbarLinkAttributes as E, Fragment as F, type MjPreviewAttributes as G, type HexColor as H, type MjRawAttributes as I, JSX as J, type MjSectionAttributes as K, type MjSelectorAttributes as L, type MjmlNode as M, type MjSocialAttributes as N, type MjSocialElementAttributes as O, type MjSpacerAttributes as P, type MjStyleAttributes as Q, type MjTableAttributes as R, type MjTextAttributes as S, type MjTitleAttributes as T, type MjWrapperAttributes as U, type MjmlAttributes as V, type MjmlChild as W, type URLString as X, type VerticalAlign as Y, jsx as Z, jsxs as _, type CSSSpacing as a, type CSSUnit as b, type CSSWidth as c, type Color as d, type MjAccordionAttributes as e, type MjAccordionElementAttributes as f, type MjAccordionTextAttributes as g, type MjAccordionTitleAttributes as h, type MjAllAttributes as i, type MjAttributesAttributes as j, type MjBodyAttributes as k, type MjBreakpointAttributes as l, type MjButtonAttributes as m, type MjCarouselAttributes as n, type MjCarouselImageAttributes as o, type MjClassAttributes as p, type MjColumnAttributes as q, type MjDividerAttributes as r, type MjFontAttributes as s, type MjGroupAttributes as t, type MjHeadAttributes as u, type MjHeroAttributes as v, type MjHtmlAttributeAttributes as w, type MjHtmlAttributesAttributes as x, type MjImageAttributes as y, type MjIncludeAttributes as z };
|