@omnia/fx-models 8.0.277-dev → 8.0.278-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.
package/Layout.d.ts
CHANGED
@@ -261,6 +261,7 @@ export interface HeaderItemSettings {
|
|
261
261
|
titleSettings: BlockTitleSettings;
|
262
262
|
anchorName?: string;
|
263
263
|
scrollIntoViewDisabled: boolean;
|
264
|
+
titleRenderer?: TitleRendererValue;
|
264
265
|
}
|
265
266
|
export interface SpacingItemSettings {
|
266
267
|
paddingRight: number | SpacingValue;
|
@@ -60,7 +60,7 @@ export interface VelcronComponentDefinition extends VelcronDefinition {
|
|
60
60
|
icon?: any;
|
61
61
|
}
|
62
62
|
export type VelcronCustomComponentDefinition = VelcronComponentDefinition;
|
63
|
-
export type BuiltInPropertyEditorType = "text" | "number" | "slider" | "switch" | "alignment" | "color" | "
|
63
|
+
export type BuiltInPropertyEditorType = "text" | "number" | "slider" | "switch" | "alignment" | "color" | "flow" | "icon" | "image" | "typography" | "spacing" | "color-schema-type" | "blueprint" | "background" | "grid" | "reference" | "select" | "property-resolver";
|
64
64
|
export type EditorLocation = "inline" | "pane" | "toolbar";
|
65
65
|
export interface VelcronEditor<TSettings = any> {
|
66
66
|
name?: string;
|
@@ -46,6 +46,14 @@ export interface OnItemRenderedHookResult {
|
|
46
46
|
cssClass: string;
|
47
47
|
containerRenderer?: VelcronContainerRenderer;
|
48
48
|
}
|
49
|
+
export interface VelcronDisplay {
|
50
|
+
size: VelcronDisplaySizes;
|
51
|
+
}
|
52
|
+
export interface VelcronDisplaySizes {
|
53
|
+
sm: boolean;
|
54
|
+
md: boolean;
|
55
|
+
lg: boolean;
|
56
|
+
}
|
49
57
|
export interface VelcronRenderContext {
|
50
58
|
id?: string;
|
51
59
|
rootContext: DynamicState;
|
@@ -71,6 +79,7 @@ export interface VelcronRenderContext {
|
|
71
79
|
baseDefinition?: VelcronAppDefinition;
|
72
80
|
subApp?: boolean;
|
73
81
|
subAppreferenceId?: guid;
|
82
|
+
$display: VelcronDisplay;
|
74
83
|
}
|
75
84
|
export interface VelcronRenderContextEventHandlers {
|
76
85
|
receiving?: {
|