@omnia/fx-models 8.0.412-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.
@@ -117,13 +117,12 @@ export interface ButtonBlueprints extends Blueprints {
|
|
117
117
|
close?: ButtonBlueprint;
|
118
118
|
} & VariantBlueprints<ButtonBlueprint>;
|
119
119
|
icon?: {
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
} & VariantBlueprints<ButtonBlueprint>;
|
120
|
+
xl?: ButtonBlueprint;
|
121
|
+
l?: ButtonBlueprint;
|
122
|
+
m?: ButtonBlueprint;
|
123
|
+
s?: ButtonBlueprint;
|
124
|
+
xs?: ButtonBlueprint;
|
125
|
+
};
|
127
126
|
}
|
128
127
|
export interface InputBlueprints extends Blueprints, VariantBlueprints<InputBlueprint> {
|
129
128
|
primary?: InputBlueprint;
|
@@ -169,7 +168,7 @@ export interface TextBlueprint extends Blueprint {
|
|
169
168
|
}
|
170
169
|
export interface IconBlueprint extends Blueprint {
|
171
170
|
color?: TextFillDefinitionValue;
|
172
|
-
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";
|
173
172
|
}
|
174
173
|
export interface ChipBlueprint extends Blueprint {
|
175
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
|
}
|