@omnia/fx-models 8.0.328-dev → 8.0.329-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,5 +1,5 @@
|
|
1
1
|
import { BackgroundDefinition, BlueprintsReference, ColorValue, FillDefinitionValue } from "./ThemeDefinition";
|
2
|
-
import { SpacingDefinition, Spacing } from "./Spacing";
|
2
|
+
import { SpacingDefinition, Spacing, SpacingValue } from "./Spacing";
|
3
3
|
import { TypographyFontDefinition, TypographyValue } from "./Typography";
|
4
4
|
import { ThemeBase } from "./ThemeBase";
|
5
5
|
import { VelcronRendererResolverReference } from "../velcron";
|
@@ -89,7 +89,8 @@ export interface ButtonBlueprintVariant {
|
|
89
89
|
category: ButtonBlueprintType;
|
90
90
|
}
|
91
91
|
export interface ButtonBlueprint extends Blueprint {
|
92
|
-
padding?:
|
92
|
+
padding?: SpacingValue;
|
93
|
+
height?: number;
|
93
94
|
background?: BackgroundDefinition;
|
94
95
|
alterCase?: boolean;
|
95
96
|
text?: TextBlueprint;
|
@@ -118,11 +119,12 @@ export interface InputBlueprints extends Blueprints, VariantBlueprints<InputBlue
|
|
118
119
|
primary?: InputBlueprint;
|
119
120
|
}
|
120
121
|
export interface InputBlueprint extends Blueprint {
|
121
|
-
variant?: "filled" | "underlined" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
|
122
|
+
variant?: "filled" | "underlined" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled" | "custom";
|
122
123
|
background?: BackgroundDefinition;
|
123
124
|
height?: number;
|
124
125
|
text?: TextBlueprint;
|
125
126
|
icon?: IconBlueprint;
|
127
|
+
padding?: SpacingValue;
|
126
128
|
}
|
127
129
|
export interface TabsBlueprints extends Blueprints, VariantBlueprints<TabsBlueprint> {
|
128
130
|
primary?: TabsBlueprint;
|
@@ -415,6 +415,7 @@ export interface VelcronReferenceDefinition extends VelcronDefinition {
|
|
415
415
|
export interface VelcronPropertyDefinition extends VelcronDefinitionWithEditMode {
|
416
416
|
type: "property";
|
417
417
|
value: VelcronBindableProp<string>;
|
418
|
+
slots: Record<string, VelcronDefinition>;
|
418
419
|
}
|
419
420
|
export interface VelcronCheckboxDefinition extends VelcronDefinition {
|
420
421
|
type: "checkbox";
|