@omnia/fx-models 8.0.443-dev → 8.0.445-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.
@@ -72,12 +72,16 @@ export interface ThemeDefinitionReference {
|
|
72
72
|
spacing: BlueprintsReference;
|
73
73
|
components: BlueprintsReference;
|
74
74
|
}
|
75
|
+
export interface ThemeSettings {
|
76
|
+
layoutWrapper?: number;
|
77
|
+
}
|
75
78
|
export interface ResolvedThemeDefinition extends ThemeDefinition<ColorSchemas> {
|
76
79
|
typography?: TypographyBlueprint;
|
77
80
|
spacing?: SpacingBlueprint;
|
78
81
|
components?: ComponentBlueprints;
|
79
82
|
containerFill?: ContainerFillBlueprints;
|
80
83
|
textFill?: TextFillBlueprints;
|
84
|
+
settings?: ThemeSettings;
|
81
85
|
}
|
82
86
|
export interface ThemeSelection {
|
83
87
|
adminThemeId?: guid;
|
@@ -200,10 +200,10 @@ export interface VelcronFlexDefinition extends VelcronDefinition, VelcronColorSt
|
|
200
200
|
}
|
201
201
|
export interface VelcronGridDefinition extends VelcronDefinition {
|
202
202
|
type: "grid";
|
203
|
-
minColumnWidth?: number | string;
|
204
|
-
columns?: number | Array<string>;
|
205
|
-
gapX?: number | string;
|
206
|
-
gapY?: number | string;
|
203
|
+
minColumnWidth?: VelcronBindableProp<number> | string;
|
204
|
+
columns?: VelcronBindableProp<number> | Array<string>;
|
205
|
+
gapX?: VelcronBindableProp<number> | string;
|
206
|
+
gapY?: VelcronBindableProp<number> | string;
|
207
207
|
}
|
208
208
|
export interface VelcronFlexRowDefinition extends VelcronDefinition, VelcronColorStyling, VelcronDefinitionHasEffects, VelcronDefinitionHasOverflow {
|
209
209
|
type: "row";
|
@@ -213,16 +213,16 @@ export interface VelcronFlexRowDefinition extends VelcronDefinition, VelcronColo
|
|
213
213
|
zIndex?: VelcronBindableProp<number>;
|
214
214
|
blueprint?: ContainerFillBlueprint | BlueprintVariant;
|
215
215
|
background?: BackgroundDefinition;
|
216
|
-
wrap?: boolean
|
217
|
-
gapX?: number | string;
|
218
|
-
gapY?: number | string;
|
219
|
-
alignX?: VelcronHorizontalAlignments
|
220
|
-
alignY?: VelcronVerticalAlignments
|
221
|
-
grow?: number | "default";
|
222
|
-
width?: number | string;
|
223
|
-
minWidth?: number | string;
|
224
|
-
height?: number | string;
|
225
|
-
minHeight?: number | string;
|
216
|
+
wrap?: VelcronBindableProp<boolean>;
|
217
|
+
gapX?: VelcronBindableProp<number> | string;
|
218
|
+
gapY?: VelcronBindableProp<number> | string;
|
219
|
+
alignX?: VelcronBindableProp<VelcronHorizontalAlignments>;
|
220
|
+
alignY?: VelcronBindableProp<VelcronVerticalAlignments>;
|
221
|
+
grow?: VelcronBindableProp<number> | "default";
|
222
|
+
width?: VelcronBindableProp<number> | string;
|
223
|
+
minWidth?: VelcronBindableProp<number> | string;
|
224
|
+
height?: VelcronBindableProp<number> | string;
|
225
|
+
minHeight?: VelcronBindableProp<number> | string;
|
226
226
|
}
|
227
227
|
export interface VelcronPosition extends VelcronDimensions {
|
228
228
|
type: "absolute" | "fixed" | "relative" | "sticky";
|
@@ -230,14 +230,14 @@ export interface VelcronPosition extends VelcronDimensions {
|
|
230
230
|
export interface VelcronFlexColumnDefinition extends VelcronDefinition, VelcronColorStyling, VelcronDefinitionHasEffects, VelcronDefinitionHasOverflow {
|
231
231
|
type: "column";
|
232
232
|
events?: VelcronOnPressEvent & VelcronOnPressOutsideEvent & VelcronOnPointerEnterEvent & VelcronOnPointerLeaveEvent;
|
233
|
-
grow?: number
|
234
|
-
blueprint?: ContainerFillBlueprint | BlueprintVariant
|
235
|
-
alignY?: VelcronVerticalAlignments
|
236
|
-
position?: VelcronPosition
|
237
|
-
absolute?: VelcronSpacing
|
238
|
-
zIndex?: number
|
239
|
-
width?: number | string;
|
240
|
-
minWidth?: number | string;
|
233
|
+
grow?: VelcronBindableProp<number>;
|
234
|
+
blueprint?: VelcronBindableProp<ContainerFillBlueprint> | VelcronBindableProp<BlueprintVariant>;
|
235
|
+
alignY?: VelcronBindableProp<VelcronVerticalAlignments>;
|
236
|
+
position?: VelcronBindableProp<VelcronPosition>;
|
237
|
+
absolute?: VelcronBindableProp<VelcronSpacing>;
|
238
|
+
zIndex?: VelcronBindableProp<number>;
|
239
|
+
width?: VelcronBindableProp<number> | string;
|
240
|
+
minWidth?: VelcronBindableProp<number> | string;
|
241
241
|
}
|
242
242
|
export interface VelcronCardDefinition extends VelcronDefinition, VelcronColorStyling {
|
243
243
|
type: "card";
|
@@ -290,11 +290,11 @@ export interface VelcronVideoDefinition extends VelcronDefinition {
|
|
290
290
|
}
|
291
291
|
export interface VelcronButtonDefinition extends VelcronDefinition, VelcronColorStyling {
|
292
292
|
type: "button";
|
293
|
-
text: string
|
294
|
-
icon?: VelcronIcon
|
295
|
-
disabled?: boolean
|
293
|
+
text: VelcronBindableProp<string>;
|
294
|
+
icon?: VelcronBindableProp<VelcronIcon>;
|
295
|
+
disabled?: VelcronBindableProp<boolean>;
|
296
296
|
events?: VelcronOnPressEvent;
|
297
|
-
size?: string
|
297
|
+
size?: VelcronBindableProp<string>;
|
298
298
|
blueprint?: VelcronBindableProp<ButtonBlueprint>;
|
299
299
|
}
|
300
300
|
export interface VelcronTextInputDefinition extends VelcronDefinition {
|