@omnia/fx-models 8.0.279-dev → 8.0.281-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
@@ -493,8 +493,14 @@ export interface LayoutEditorCanvasStore extends ILayoutCanvasStore {
|
|
493
493
|
export interface LayoutRendererCanvasStore extends ILayoutCanvasStore {
|
494
494
|
}
|
495
495
|
export interface ILayoutCanvasStore {
|
496
|
-
getters: {
|
496
|
+
getters: {
|
497
|
+
zoomLevel: () => number;
|
498
|
+
};
|
497
499
|
mutations: {
|
500
|
+
zoom: (zoom: number) => void;
|
501
|
+
zoomOut: () => void;
|
502
|
+
zoomIn: () => void;
|
503
|
+
setWidth: (width: string) => void;
|
498
504
|
setLayout: (layout: Layout) => void;
|
499
505
|
setTheme: (layoutThemeDefinition: ThemeDefinition, blockThemeDefinition: ThemeDefinition) => void;
|
500
506
|
setLayoutBackgroundImageElementId: (elementId: string) => void;
|
@@ -3,6 +3,7 @@ import { guid } from "@omnia/fx-models/internal-do-not-import-from-here/shared/m
|
|
3
3
|
export interface FlowEditorActionRegistration {
|
4
4
|
id: guid;
|
5
5
|
icon: FontAwesomeIcon;
|
6
|
+
target: Array<"toolbar" | "selector">;
|
6
7
|
altText?: string;
|
7
8
|
groupIndex: number;
|
8
9
|
itemIndex: number;
|
@@ -36,6 +36,7 @@ export interface BuiltInComponentRenderers {
|
|
36
36
|
"lottie": unknown;
|
37
37
|
"slide-panel": unknown;
|
38
38
|
"editor": unknown;
|
39
|
+
"link": unknown;
|
39
40
|
}
|
40
41
|
export interface ColorSchemaReference {
|
41
42
|
name: string;
|
@@ -380,6 +381,10 @@ export interface VelcronPropertyDefinitionValue {
|
|
380
381
|
value: PropertyValue;
|
381
382
|
configuration: PropertyConfiguration<PropertyDefinition<any, any, any, PropertySetupBase>>;
|
382
383
|
}
|
384
|
+
export interface VelcronLinkDefinition extends VelcronDefinition {
|
385
|
+
type: "link";
|
386
|
+
value: VelcronBindableProp<string>;
|
387
|
+
}
|
383
388
|
export type VelcronRenderProps<TDefinition> = {
|
384
389
|
definition: TDefinition;
|
385
390
|
renderContext: VelcronRenderContext;
|