@omnia/fx 8.0.275-dev → 8.0.277-dev

Sign up to get free protection for your applications and to get access to all the features.
Files changed (33) hide show
  1. package/internal-do-not-import-from-here/ux/admin/businessprofile/settings/language/LanguageSettings.d.ts +4 -1
  2. package/internal-do-not-import-from-here/ux/admin/businessprofile/settings/language/loc/localize.d.ts +1 -0
  3. package/internal-do-not-import-from-here/ux/admin/settings/blades/tenantregional/components/LanguageSettings.d.ts +4 -1
  4. package/internal-do-not-import-from-here/ux/admin/settings/blades/tenantregional/loc/localize.d.ts +1 -0
  5. package/internal-do-not-import-from-here/ux/enterpriseproperties/renderers/EnterprisePropertyValue.d.ts +1 -1
  6. package/internal-do-not-import-from-here/ux/flow/editor/FlowEditor.d.ts +0 -2
  7. package/internal-do-not-import-from-here/ux/flow/editor/FlowEditorToolbar.css.d.ts +1 -0
  8. package/internal-do-not-import-from-here/ux/flow/editor/commands/EditorCommands.d.ts +3 -0
  9. package/internal-do-not-import-from-here/ux/flow/editor/commands/helpers/index.d.ts +1 -1
  10. package/internal-do-not-import-from-here/ux/flow/editor/models/EditorPlugin.d.ts +11 -2
  11. package/internal-do-not-import-from-here/ux/flow/editor/parsers/HtmlParser.d.ts +1 -1
  12. package/internal-do-not-import-from-here/ux/flow/editor/parsers/JSONParser.d.ts +1 -1
  13. package/internal-do-not-import-from-here/ux/flow/editor/stores/FlowEditorStore.d.ts +33 -7
  14. package/internal-do-not-import-from-here/ux/flow/editor/stores/FlowEditorToolbarStore.d.ts +174 -31
  15. package/internal-do-not-import-from-here/ux/flow/renderer/models/FlowRendererPluginHook.d.ts +10 -0
  16. package/internal-do-not-import-from-here/ux/flow/renderer/models/index.d.ts +1 -0
  17. package/internal-do-not-import-from-here/ux/mediapickerproviders/unsplash/Handler.d.ts +6 -0
  18. package/internal-do-not-import-from-here/ux/models/flow/SpacingFormatNode.d.ts +1 -1
  19. package/internal-do-not-import-from-here/ux/models/flow/TextAlignNode.d.ts +1 -1
  20. package/internal-do-not-import-from-here/ux/oxide/expansionpanel/ExpansionPanel.d.ts +1 -1
  21. package/internal-do-not-import-from-here/ux/oxide/expansionpanel/ExpansionPanels.d.ts +9 -3
  22. package/internal-do-not-import-from-here/ux/properties/property-picker/PropertyInput.d.ts +0 -18
  23. package/internal-do-not-import-from-here/ux/use/UseDraggable.d.ts +29 -1
  24. package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronDefinitions.d.ts +7 -4
  25. package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronPropertyEditorDefinitions.d.ts +4 -3
  26. package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronState.d.ts +8 -0
  27. package/internal-do-not-import-from-here/ux/velcron/core/templatebuilder/VelcronEditorBuilder.d.ts +1 -1
  28. package/internal-do-not-import-from-here/ux/velcron/editor/models/ComponentPropertyDescriptorTemplates.d.ts +2 -0
  29. package/internal-do-not-import-from-here/ux/velcron/editor/templates/ContentTemplates.d.ts +2 -0
  30. package/internal-do-not-import-from-here/ux/velcron/renderer/VelcronRenderer.d.ts +1 -1
  31. package/internal-do-not-import-from-here/ux/velcron/renderer/editors/PropertyResolverEditor.d.ts +5 -5
  32. package/package.json +2 -2
  33. /package/internal-do-not-import-from-here/ux/flow/editor/commands/helpers/{Editorhelper.d.ts → EditorHelper.d.ts} +0 -0
@@ -0,0 +1,10 @@
1
+ import { FlowNode } from "internal/fx/ux/models";
2
+ import { FlowRendererPlugin } from "./FlowRendererPlugin";
3
+ export interface FlowHookContext<TElementType extends HTMLElement = HTMLElement, TNodeType extends FlowNode = FlowNode> {
4
+ element: TElementType;
5
+ node: TNodeType;
6
+ }
7
+ export interface FlowRenderPluginHook extends FlowRendererPlugin {
8
+ subscription: string;
9
+ toHtmlHook: <TElementType extends HTMLElement = HTMLElement, TNodeType extends FlowNode = FlowNode>(context: FlowHookContext<TElementType, TNodeType>) => null;
10
+ }
@@ -4,3 +4,4 @@ export * from "./FlowRendererContext";
4
4
  export * from "./FlowRendererPlugin";
5
5
  export * from "./FlowRendererPluginContext";
6
6
  export * from "./FlowRendererToHtmlContext";
7
+ export * from "./FlowRendererPluginHook";
@@ -0,0 +1,6 @@
1
+ import { ImageItem } from "@omnia/fx-models";
2
+ import { BaseProviderImageHandler } from "@omnia/fx/stores";
3
+ export declare class UnsplashProviderHandler extends BaseProviderImageHandler {
4
+ private imageService;
5
+ search(searchText: string, offset?: number): Promise<ImageItem[]>;
6
+ }
@@ -1,5 +1,5 @@
1
1
  import { Spacing } from "@omnia/fx-models";
2
2
  import { FlowNode } from "./FlowContent";
3
3
  export interface SpacingFormatNode extends FlowNode {
4
- data: Spacing;
4
+ spacing: Spacing;
5
5
  }
@@ -1,5 +1,5 @@
1
1
  import { FlowNode } from "./FlowContent";
2
2
  export type FlowTextAlignment = "left" | "center" | "right";
3
3
  export interface TextAlignFormatNode extends FlowNode {
4
- data: FlowTextAlignment;
4
+ align: FlowTextAlignment;
5
5
  }
@@ -1,6 +1,6 @@
1
1
  import { DefineProp, DefinePropTheming, DefineSlot } from "@omnia/fx/ux";
2
2
  import { IIcon } from "@omnia/fx/models";
3
3
  import { VNodeChild } from "vue";
4
- type ExpansionPanelProps = DefinePropTheming & DefineProp<"class", String | String[]> & DefineProp<"title", string, false, null, "The title of the expansion panel."> & DefineProp<"icon", IIcon, false, null, "The icon of the expansion panel."> & DefineProp<"toned", boolean, false, false> & DefineProp<"hideExpandIcon", boolean, false, false, "If true, the expand icon will be hidden."> & DefineProp<"eager", boolean, false, false, "Forces the component’s content to render when it mounts. This is useful if you have content that will not be rendered in the DOM that you want crawled for SEO or you want to disable lazy load."> & DefineSlot<"header", () => VNodeChild> & DefineSlot<"default", () => VNodeChild> & DefineSlot<"actions", () => VNodeChild>;
4
+ type ExpansionPanelProps = DefinePropTheming & DefineProp<"class", String | String[]> & DefineProp<"title", string, false, null, "The title of the expansion panel."> & DefineProp<"icon", IIcon, false, null, "The icon of the expansion panel."> & DefineProp<"toned", boolean, false, false> & DefineProp<"hideExpandIcon", boolean, false, false, "If true, the expand icon will be hidden."> & DefineProp<"eager", boolean, false, false, "Forces the component’s content to render when it mounts. This is useful if you have content that will not be rendered in the DOM that you want crawled for SEO or you want to disable lazy load."> & DefineSlot<"prepend", () => VNodeChild> & DefineSlot<"header", () => VNodeChild> & DefineSlot<"default", () => VNodeChild> & DefineSlot<"actions", () => VNodeChild>;
5
5
  declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<ExpansionPanelProps>) => any;
6
6
  export default _default;
@@ -1,5 +1,11 @@
1
1
  import { OPanelTypes } from "@omnia/fx-models";
2
- import { DefineProp, DefinePropTheming, DefineVModel } from "@omnia/fx/ux";
3
- type ExpansionPanelsProps = DefinePropTheming & DefineProp<"class", String | String[]> & DefineVModel<"", number | Array<number>, false, null, false, "The v-model of the component."> & DefineProp<"variant", OPanelTypes, false, null, "Applies a distinct style to the component."> & DefineProp<"expandAll", boolean, false, false, "Expands all panels"> & DefineProp<"mandatory", boolean, false, false, "Forces at least one item to always be selected (if available)."> & DefineProp<"toned", boolean, false, false, "Applies the toned color schema to all panels."> & DefineProp<"multiple", boolean, false, false, "Allows one to select multiple items.">;
4
- declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<ExpansionPanelsProps>) => any;
2
+ import { DefineProp, DefinePropTheming, DefineSlot, DefineVModel, ItemValueType } from "@omnia/fx/ux";
3
+ import { VNodeChild } from "vue";
4
+ export interface IExpansionPanel<T> {
5
+ value: T;
6
+ index: number;
7
+ ExpansionPanel: typeof o.expansion.panel;
8
+ }
9
+ type ExpansionPanelsProps<T> = DefinePropTheming & DefineProp<"class", String | String[]> & DefineVModel<"", number | Array<number>, false, null, false, "The v-model of the component."> & DefineVModel<"items", T[], false, null, false, "An array of strings or objects used for automatically generating children components."> & DefineProp<"drag", boolean, false, false, "Enable draggable row."> & DefineProp<"variant", OPanelTypes, false, null, "Applies a distinct style to the component."> & DefineProp<"expandAll", boolean, false, false, "Expands all panels"> & DefineProp<"mandatory", boolean, false, false, "Forces at least one item to always be selected (if available)."> & DefineProp<"toned", boolean, false, false, "Applies the toned color schema to all panels."> & DefineProp<"multiple", boolean, false, false, "Allows one to select multiple items."> & DefineProp<"itemValue", ItemValueType<T>, false, null, "Property on supplied items that contains its value."> & DefineSlot<"item", (item: IExpansionPanel<T>) => VNodeChild>;
10
+ declare const _default: <T extends unknown>(props: import("@omnia/fx/ux").ConstructComponentProps<ExpansionPanelsProps<T>>) => any;
5
11
  export default _default;
@@ -1,4 +1,3 @@
1
- import { guid, PropertyDefinition } from "@omnia/fx-models";
2
1
  import { PropertyRegistration } from "../models/PropertyInput";
3
2
  import { IDataSourcePropertyCreator } from "@omnia/fx/services";
4
3
  declare const _default: {
@@ -15,10 +14,6 @@ declare const _default: {
15
14
  type: import("vue").PropType<PropertyRegistration[]>;
16
15
  required: false;
17
16
  };
18
- selectableProperties: {
19
- type: import("vue").PropType<guid[] | PropertyDefinition<any, any, any, import("@omnia/fx-models").PropertySetupBase>[]>;
20
- required: false;
21
- };
22
17
  hideConfiguration: {
23
18
  type: import("vue").PropType<boolean>;
24
19
  required: false;
@@ -122,10 +117,6 @@ declare const _default: {
122
117
  type: import("vue").PropType<PropertyRegistration[]>;
123
118
  required: false;
124
119
  };
125
- selectableProperties: {
126
- type: import("vue").PropType<guid[] | PropertyDefinition<any, any, any, import("@omnia/fx-models").PropertySetupBase>[]>;
127
- required: false;
128
- };
129
120
  hideConfiguration: {
130
121
  type: import("vue").PropType<boolean>;
131
122
  required: false;
@@ -231,10 +222,6 @@ declare const _default: {
231
222
  type: import("vue").PropType<PropertyRegistration[]>;
232
223
  required: false;
233
224
  };
234
- selectableProperties: {
235
- type: import("vue").PropType<guid[] | PropertyDefinition<any, any, any, import("@omnia/fx-models").PropertySetupBase>[]>;
236
- required: false;
237
- };
238
225
  hideConfiguration: {
239
226
  type: import("vue").PropType<boolean>;
240
227
  required: false;
@@ -337,10 +324,6 @@ declare const _default: {
337
324
  type: import("vue").PropType<PropertyRegistration[]>;
338
325
  required: false;
339
326
  };
340
- selectableProperties: {
341
- type: import("vue").PropType<guid[] | PropertyDefinition<any, any, any, import("@omnia/fx-models").PropertySetupBase>[]>;
342
- required: false;
343
- };
344
327
  hideConfiguration: {
345
328
  type: import("vue").PropType<boolean>;
346
329
  required: false;
@@ -501,7 +484,6 @@ declare const _default: {
501
484
  "onUpdate:modelValue"?: (value: PropertyRegistration) => any | void;
502
485
  hideDetails?: boolean;
503
486
  hideConfiguration?: boolean;
504
- selectableProperties?: guid[] | PropertyDefinition<any, any, any, import("@omnia/fx-models").PropertySetupBase>[];
505
487
  loadingProperties?: boolean;
506
488
  propertyCreator?: IDataSourcePropertyCreator;
507
489
  propertyRegistrations?: PropertyRegistration[];
@@ -8,7 +8,35 @@ export declare const DraggableStyles: {
8
8
  };
9
9
  export declare function useDraggable(): {
10
10
  Draggable: DraggableComponentTypings;
11
- readonly DraggableIcon: JSX.Element;
11
+ readonly DraggableIcon: (props: ConstructComponentProps<{
12
+ colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic";
13
+ } & {
14
+ container?: boolean;
15
+ } & {
16
+ colors?: import("..").ColorSchemaStoreType;
17
+ } & {
18
+ class?: String | String[];
19
+ } & {
20
+ filled?: boolean;
21
+ } & {
22
+ icon?: import("@omnia/fx-models").IIcon;
23
+ } & {
24
+ toned?: boolean;
25
+ } & {
26
+ colorType?: "base" | "onBase" | "container" | "onContainer";
27
+ } & {
28
+ variant?: "background" | "default";
29
+ } & {
30
+ size?: "small" | "default" | "x-large" | "x-small" | "large";
31
+ } & {
32
+ animation?: "flip" | "bounce" | "spin" | "beat";
33
+ } & {
34
+ customSize?: number;
35
+ } & {
36
+ disabled?: boolean;
37
+ } & {
38
+ blueprint?: import("@omnia/fx-models").IconBlueprint;
39
+ }>) => any;
12
40
  draggableContainerRef: Ref<any>;
13
41
  draggableItemClass: string;
14
42
  disabledItemClass: string;
@@ -1,4 +1,4 @@
1
- import { VelcronOnUpdatedEvent, VelcronOnClosedEvent, VelcronOnCloseRequestedEvent, VelcronOnPressEvent, VelcronSpacing, VelcronStyling, VelcronCustomComponentDefinition, VelcronAppDefinition, VelcronRendererResolverReference, EventHook, Future, TextBlueprint, VelcronBindableProp, VelcronEditor, ContainerBlueprint, BackgroundDefinition, ContainerVariant, IconBlueprint } from "@omnia/fx-models/internal-do-not-import-from-here/shared/models";
1
+ import { VelcronOnUpdatedEvent, VelcronOnClosedEvent, VelcronOnCloseRequestedEvent, VelcronOnPressEvent, VelcronSpacing, VelcronStyling, VelcronCustomComponentDefinition, VelcronAppDefinition, VelcronRendererResolverReference, EventHook, Future, TextBlueprint, VelcronBindableProp, VelcronEditor, ContainerBlueprint, BackgroundDefinition, ContainerVariant, IconBlueprint, ButtonBlueprint } from "@omnia/fx-models/internal-do-not-import-from-here/shared/models";
2
2
  import { VelcroncomponentArrayType, VelcronPrimitiveType } from "./VelcronTypes";
3
3
  import { AssignOperators, VelcronHorizontalAlignments, VelcronIconTypes, VelcronActionTypes, VelcronVerticalAlignments } from "./Enums";
4
4
  import { DynamicState, VelcronDefinition, VelcronEffects, useVelcronThemingStore } from "..";
@@ -240,13 +240,14 @@ export interface VelcronVideoDefinition extends VelcronDefinition {
240
240
  autoplay?: VelcronBindableProp<boolean>;
241
241
  muted?: VelcronBindableProp<boolean>;
242
242
  }
243
- export interface VelcronButtonDefinition extends VelcronDefinition {
243
+ export interface VelcronButtonDefinition extends VelcronDefinition, VelcronColorStyling {
244
244
  type: "button";
245
245
  text: string;
246
246
  icon?: VelcronIcon;
247
247
  disabled?: boolean;
248
248
  events?: VelcronOnPressEvent;
249
249
  size?: string;
250
+ blueprint?: VelcronBindableProp<ButtonBlueprint>;
250
251
  }
251
252
  export interface VelcronTextInputDefinition extends VelcronDefinition {
252
253
  type: "text-input";
@@ -372,8 +373,10 @@ export interface VelcronPropertyDefinitionValue {
372
373
  configuration: PropertyConfiguration<PropertyDefinition<any, any, any, PropertySetupBase>>;
373
374
  }
374
375
  export interface VelcronPropertyDefinitionValueResolver {
375
- name: string;
376
- source: IDataSourcePropertySelection;
376
+ source?: IDataSourcePropertySelection;
377
+ }
378
+ export interface VelcronPropertyEditorValue {
379
+ [key: string]: VelcronPropertyDefinitionValueResolver;
377
380
  }
378
381
  export type VelcronRenderProps<TDefinition> = {
379
382
  definition: TDefinition;
@@ -37,15 +37,16 @@ export interface VelcronNumberEditorSettings {
37
37
  step: number;
38
38
  }
39
39
  export interface VelcronPropertyMapping {
40
- name: string;
40
+ state: string;
41
+ title: string;
41
42
  definitionId: guid;
42
- dataSourceId?: guid;
43
+ dataSourceIds?: guid[];
43
44
  }
44
45
  export interface VelcronPropertyResolverEditorSettings {
45
46
  properties: Array<VelcronPropertyMapping>;
46
47
  }
47
48
  export interface VelcronBlueprintEditorSettings {
48
- type: "container" | "icon";
49
+ type: "container" | "icon" | "button";
49
50
  }
50
51
  export interface VelcronBackgroundEditorSettings {
51
52
  type: "image" | "video";
@@ -71,8 +71,10 @@ export interface VelcronImageState {
71
71
  }
72
72
  export declare const VelcronImagesStateBinding: {
73
73
  main: {
74
+ mediapickerImage: string;
74
75
  editor: string;
75
76
  url: string;
77
+ value: string;
76
78
  ratio: string;
77
79
  caption: string;
78
80
  width: string;
@@ -81,6 +83,7 @@ export declare const VelcronImagesStateBinding: {
81
83
  alt1: {
82
84
  editor: string;
83
85
  url: string;
86
+ value: string;
84
87
  ratio: string;
85
88
  caption: string;
86
89
  width: string;
@@ -89,6 +92,7 @@ export declare const VelcronImagesStateBinding: {
89
92
  alt2: {
90
93
  editor: string;
91
94
  url: string;
95
+ value: string;
92
96
  ratio: string;
93
97
  caption: string;
94
98
  width: string;
@@ -129,8 +133,10 @@ export declare const VelcronStateBinding: {
129
133
  };
130
134
  images: {
131
135
  main: {
136
+ mediapickerImage: string;
132
137
  editor: string;
133
138
  url: string;
139
+ value: string;
134
140
  ratio: string;
135
141
  caption: string;
136
142
  width: string;
@@ -139,6 +145,7 @@ export declare const VelcronStateBinding: {
139
145
  alt1: {
140
146
  editor: string;
141
147
  url: string;
148
+ value: string;
142
149
  ratio: string;
143
150
  caption: string;
144
151
  width: string;
@@ -147,6 +154,7 @@ export declare const VelcronStateBinding: {
147
154
  alt2: {
148
155
  editor: string;
149
156
  url: string;
157
+ value: string;
150
158
  ratio: string;
151
159
  caption: string;
152
160
  width: string;
@@ -3,7 +3,7 @@ export declare class VelcronEditorBuilder {
3
3
  private editors;
4
4
  private formatStateMapping;
5
5
  add(): {
6
- blueprintEditor: (name: string, stateMapping: string, type: "container") => VelcronEditorBuilder;
6
+ blueprintEditor: (name: string, stateMapping: string, type: "container" | "icon" | "button") => VelcronEditorBuilder;
7
7
  spacingEditor: (name: string, stateMapping: string, individualSelection?: boolean) => VelcronEditorBuilder;
8
8
  imageEditor: (name: string, stateMapping: string) => VelcronEditorBuilder;
9
9
  colorSchemaEditor: (name: string, stateMapping: string) => VelcronEditorBuilder;
@@ -2,6 +2,7 @@ import { VelcronComponentPropertyDescriptor } from "./VelcronDescriptors";
2
2
  export declare const ComponentPropertyDescriptorTemplates: {
3
3
  colorSchema: VelcronComponentPropertyDescriptor;
4
4
  containerBlueprint: VelcronComponentPropertyDescriptor;
5
+ buttonBlueprint: VelcronComponentPropertyDescriptor;
5
6
  iconBlueprint: VelcronComponentPropertyDescriptor;
6
7
  margin: VelcronComponentPropertyDescriptor;
7
8
  padding: VelcronComponentPropertyDescriptor;
@@ -10,6 +11,7 @@ export declare const ComponentPropertyDescriptorTemplates: {
10
11
  overflowX: VelcronComponentPropertyDescriptor;
11
12
  overflowY: VelcronComponentPropertyDescriptor;
12
13
  wrap: VelcronComponentPropertyDescriptor;
14
+ wordBreak: VelcronComponentPropertyDescriptor;
13
15
  gapX: VelcronComponentPropertyDescriptor;
14
16
  gapY: VelcronComponentPropertyDescriptor;
15
17
  alignX: VelcronComponentPropertyDescriptor;
@@ -6,4 +6,6 @@ export declare const VelcronContentComponentTemplates: {
6
6
  SummaryTemplate: VelcronComponentTemplateDescriptor;
7
7
  TextTemplate: VelcronComponentTemplateDescriptor;
8
8
  SectionTemplate: VelcronComponentTemplateDescriptor;
9
+ MainImageTemplate: VelcronComponentTemplateDescriptor;
10
+ MainImagePickerTemplate: VelcronComponentTemplateDescriptor;
9
11
  };
@@ -173,8 +173,8 @@ declare const _default: {
173
173
  colorSchemaType?: "background" | "primary" | "secondary" | ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic";
174
174
  colors?: import("@omnia/fx/ux").ColorSchemaStoreType;
175
175
  themeDefinition?: ThemeDefinitionV2;
176
- editMode?: boolean;
177
176
  context?: VelcronRenderContext;
177
+ editMode?: boolean;
178
178
  eventHandlers?: VelcronRenderContextEventHandlers;
179
179
  }>, "onSetup:context" | "onState:updated"> & {
180
180
  "onSetup:context"?: (context: VelcronRenderContext) => any;
@@ -1,15 +1,15 @@
1
- import { EditorLocation, VelcronPropertyDefinitionValueResolver, VelcronPropertyResolverEditorSettings } from "@omnia/fx-models";
1
+ import { EditorLocation, VelcronPropertyEditorValue, VelcronPropertyResolverEditorSettings } from "@omnia/fx-models";
2
2
  declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
3
3
  location?: EditorLocation;
4
4
  } & {
5
5
  settings?: VelcronPropertyResolverEditorSettings;
6
6
  } & {
7
- "emit:update:modelValue": (value: VelcronPropertyDefinitionValueResolver[]) => void;
7
+ "emit:update:modelValue": (value: VelcronPropertyEditorValue) => void;
8
8
  } & {
9
- "v-model"?: VelcronPropertyDefinitionValueResolver[];
9
+ "v-model"?: VelcronPropertyEditorValue;
10
10
  } & {
11
- "onUpdate:modelValue"?: (value: VelcronPropertyDefinitionValueResolver[]) => void;
11
+ "onUpdate:modelValue"?: (value: VelcronPropertyEditorValue) => void;
12
12
  } & {
13
- modelValue?: VelcronPropertyDefinitionValueResolver[];
13
+ modelValue?: VelcronPropertyEditorValue;
14
14
  }>) => any;
15
15
  export default _default;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx",
3
3
  "license": "MIT",
4
- "version": "8.0.275-dev",
4
+ "version": "8.0.277-dev",
5
5
  "description": "Provide Omnia Fx typings and tooling for clientside Omnia development.",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1",
@@ -20,7 +20,7 @@
20
20
  ],
21
21
  "author": "Precio Fishbone",
22
22
  "dependencies": {
23
- "@omnia/fx-models": "8.0.275-dev",
23
+ "@omnia/fx-models": "8.0.277-dev",
24
24
  "@microsoft/signalr": "6.0.1",
25
25
  "broadcast-channel": "4.8.0",
26
26
  "dayjs": "1.11.7",