@win2win/shared 1.0.216 → 1.0.218
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.
|
@@ -167,7 +167,9 @@ export interface LandingSectionRaw {
|
|
|
167
167
|
ESTADO: number;
|
|
168
168
|
MARGINS: Spacing | null;
|
|
169
169
|
PADDINGS: Spacing | null;
|
|
170
|
-
|
|
170
|
+
DISPLAY: Style | null;
|
|
171
|
+
TEXT: Style | null;
|
|
172
|
+
CUSTOM: Style | null;
|
|
171
173
|
FECHA_UPD: Date;
|
|
172
174
|
}
|
|
173
175
|
export interface MailRaw {
|
|
@@ -180,3 +182,4 @@ export interface MailRaw {
|
|
|
180
182
|
CODIGO: string;
|
|
181
183
|
PARAMS_REQUERIDOS: string;
|
|
182
184
|
}
|
|
185
|
+
export type Style = Partial<CSSStyleDeclaration>;
|
package/package.json
CHANGED