@pagenflow/email 1.1.1 → 1.1.4

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.
@@ -1,5 +1,29 @@
1
- export interface MyComponentProps {
2
- text: string;
3
- variant?: 'primary' | 'secondary';
4
- onClick?: () => void;
1
+ export interface BorderConfig {
2
+ width?: string;
3
+ style?: "solid" | "dashed" | "dotted" | "double";
4
+ color?: string;
5
+ top?: {
6
+ width: string;
7
+ style: string;
8
+ color: string;
9
+ };
10
+ right?: {
11
+ width: string;
12
+ style: string;
13
+ color: string;
14
+ };
15
+ bottom?: {
16
+ width: string;
17
+ style: string;
18
+ color: string;
19
+ };
20
+ left?: {
21
+ width: string;
22
+ style: string;
23
+ color: string;
24
+ };
5
25
  }
26
+ export type JustifyContent = "start" | "center" | "end";
27
+ export type AlignItems = "start" | "center" | "end";
28
+ export type TdAlign = "center" | "left" | "right";
29
+ export type TdValign = "top" | "middle" | "bottom";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pagenflow/email",
3
- "version": "1.1.1",
3
+ "version": "1.1.4",
4
4
  "description": "Free Email Compatible Components",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.esm.js",