@omnia/fx-models 8.0.413-dev → 8.0.414-dev
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,6 +1,6 @@
|
|
1
1
|
import { BackgroundDefinition, BlueprintsReference, ColorSchemaType, ColorValue, TextFillDefinitionValue } from "./ThemeDefinition";
|
2
2
|
import { SpacingDefinition, Spacing, SpacingValue } from "./Spacing";
|
3
|
-
import { TypographyFontDefinition, TextStyleValue
|
3
|
+
import { TypographyFontDefinition, TextStyleValue } from "./Typography";
|
4
4
|
import { ThemeBase } from "./ThemeBase";
|
5
5
|
import { VelcronRendererResolverReference } from "../velcron";
|
6
6
|
export interface BlueprintStrategy {
|
@@ -168,7 +168,7 @@ export interface TextBlueprint extends Blueprint {
|
|
168
168
|
}
|
169
169
|
export interface IconBlueprint extends Blueprint {
|
170
170
|
color?: TextFillDefinitionValue;
|
171
|
-
size?: number |
|
171
|
+
size?: number | "s1" | "s2" | "s3" | "s4" | "s5" | "s6" | "s7" | "s8" | "s9" | "s10" | "s11" | "s12" | "s13" | "s14" | "s15" | "s16" | "s17" | "s18" | "s19" | "s20";
|
172
172
|
}
|
173
173
|
export interface ChipBlueprint extends Blueprint {
|
174
174
|
bgColor?: TextFillDefinitionValue;
|
package/package.json
CHANGED
@@ -7,6 +7,7 @@ export declare class DateTimeDisplaySettings extends PropertyDisplaySettingsBase
|
|
7
7
|
locks?: PropertyLockStatusType<LockStatusExcludeChildren<Omit<DateTimeDisplaySettings, "locks">, "label">>;
|
8
8
|
renderMode?: DateRenderOption;
|
9
9
|
showTimeZone?: boolean;
|
10
|
+
includeTime?: boolean;
|
10
11
|
}
|
11
12
|
export declare class DateTimeEditorSettings extends PropertyEditorSettingsBase {
|
12
13
|
}
|