lucid-extension-sdk 0.0.250 → 0.0.251
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.
|
@@ -18,7 +18,7 @@ export interface TextStyle {
|
|
|
18
18
|
[TextMarkupNames.Underline]: boolean;
|
|
19
19
|
[TextMarkupNames.Size]: number;
|
|
20
20
|
[TextMarkupNames.Color]: string;
|
|
21
|
-
[TextMarkupNames.HAlign]:
|
|
21
|
+
[TextMarkupNames.HAlign]: string;
|
|
22
22
|
}
|
|
23
23
|
export declare const isPartialTextStyle: (subject: unknown) => subject is Partial<import("../..").DestructureGuardedTypeObj<{
|
|
24
24
|
font: typeof isString;
|
|
@@ -27,5 +27,5 @@ export declare const isPartialTextStyle: (subject: unknown) => subject is Partia
|
|
|
27
27
|
underline: typeof isBoolean;
|
|
28
28
|
size: typeof isNumber;
|
|
29
29
|
color: typeof isString;
|
|
30
|
-
align:
|
|
30
|
+
align: typeof isString;
|
|
31
31
|
}>>;
|
|
@@ -23,5 +23,5 @@ exports.isPartialTextStyle = (0, validators_1.partialObjectValidator)({
|
|
|
23
23
|
[TextMarkupNames.Underline]: checks_1.isBoolean,
|
|
24
24
|
[TextMarkupNames.Size]: checks_1.isNumber,
|
|
25
25
|
[TextMarkupNames.Color]: checks_1.isString,
|
|
26
|
-
[TextMarkupNames.HAlign]:
|
|
26
|
+
[TextMarkupNames.HAlign]: checks_1.isString,
|
|
27
27
|
});
|