@omnia/fx 8.0.291-dev → 8.0.293-dev

Sign up to get free protection for your applications and to get access to all the features.
Files changed (35) hide show
  1. package/internal-do-not-import-from-here/core/Extend.d.ts +1 -0
  2. package/internal-do-not-import-from-here/ux/flow/editor/FlowEditor.css.d.ts +2 -2
  3. package/internal-do-not-import-from-here/ux/flow/editor/plugins/colorstyle/ColorButton.d.ts +4 -0
  4. package/internal-do-not-import-from-here/ux/flow/editor/plugins/link/LinkButton.d.ts +4 -0
  5. package/internal-do-not-import-from-here/ux/flow/editor/plugins/spacing/SpacingButton.d.ts +4 -0
  6. package/internal-do-not-import-from-here/ux/flow/editor/plugins/typography/TypographyButton.d.ts +4 -0
  7. package/internal-do-not-import-from-here/ux/flow/editor/stores/FlowEditorStore.d.ts +5 -1
  8. package/internal-do-not-import-from-here/ux/flow/editor/stores/FlowEditorToolbarStore.d.ts +20 -0
  9. package/internal-do-not-import-from-here/ux/flow/renderer/FlowRenderer.css.d.ts +2 -2
  10. package/internal-do-not-import-from-here/ux/flow/renderer/stores/FlowRendererStore.d.ts +5 -1
  11. package/internal-do-not-import-from-here/ux/layoutcanvas/layoutblock/LayoutBlock.d.ts +16 -0
  12. package/internal-do-not-import-from-here/ux/layoutcanvas/layoutblock/LayoutBlockSettings.d.ts +20 -0
  13. package/internal-do-not-import-from-here/ux/layoutcanvas/shared/BreakPointManager.d.ts +1 -1
  14. package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsrenderer/LayoutSectionRenderer.css.d.ts +2 -1
  15. package/internal-do-not-import-from-here/ux/layoutcanvas/stores/LayoutCanvasStore.d.ts +10 -0
  16. package/internal-do-not-import-from-here/ux/{linkpicker → links}/LinkPicker.d.ts +2 -2
  17. package/internal-do-not-import-from-here/ux/{linkpicker → links}/LinkRenderer.d.ts +1 -1
  18. package/internal-do-not-import-from-here/ux/{linkpicker → links}/apis/InternalLinkHandlerRegistrationApi.d.ts +2 -1
  19. package/internal-do-not-import-from-here/ux/links/apis/InternalLinkProviderRegistrationApi.d.ts +5 -0
  20. package/internal-do-not-import-from-here/ux/{linkpicker → links}/store/LinkPickerStore.d.ts +16 -7
  21. package/internal-do-not-import-from-here/ux/models/DataTable.d.ts +12 -1
  22. package/internal-do-not-import-from-here/ux/models/linkpicker/LinkPickerRegistration.d.ts +5 -11
  23. package/internal-do-not-import-from-here/ux/oxide/datatable/DataTable.d.ts +3 -12
  24. package/internal-do-not-import-from-here/ux/oxide/scrollcontainer/ScrollContainer.d.ts +1 -1
  25. package/internal-do-not-import-from-here/ux/oxide/scrollcontainer/store/ScrollContainerStore.d.ts +10 -0
  26. package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronDefinitions.d.ts +1 -1
  27. package/internal-do-not-import-from-here/ux/velcron/renderer/editors/LinkResolverEditor.d.ts +1 -1
  28. package/internal-do-not-import-from-here/ux/versionedlayout/renderer/VersionedLayoutRenderer.d.ts +16 -0
  29. package/internal-do-not-import-from-here/wctypings.d.ts +34 -18
  30. package/package.json +2 -2
  31. package/internal-do-not-import-from-here/ux/linkpicker/apis/InternalLinkProviderRegistrationApi.d.ts +0 -5
  32. /package/internal-do-not-import-from-here/ux/{linkpicker → links}/LinkPicker.css.d.ts +0 -0
  33. /package/internal-do-not-import-from-here/ux/{linkpicker → links}/LinkRenderer.css.d.ts +0 -0
  34. /package/internal-do-not-import-from-here/ux/{linkpicker → links}/apis/Registration.d.ts +0 -0
  35. /package/internal-do-not-import-from-here/ux/{linkpicker → links}/factory/LinkItemFactory.d.ts +0 -0
@@ -8,6 +8,7 @@ export declare function registerApi<T>(targetApi: ((extend: IExtend) => Promise<
8
8
  export declare namespace InternalExtend {
9
9
  function getApiPathString(exp: (extend: IExtend | IExtendApiManifest) => ApiPath | IExtendApiManifestWithConfiguration<any>): string;
10
10
  function getExtendApiConfiguration<T>(targetApi: (extend: IExtendApiManifest) => IExtendApiManifestWithConfiguration<T>): Promise<ExtendApiConfigurationManifest<T>[]>;
11
+ function resolveExtendApiManifests<T>(targetApi: (extend: IExtendApiManifest) => IExtendApiManifestWithConfiguration<T>, manifests: LoadableBundleManifest[]): Promise<void>;
11
12
  function extendApi<T, TConfiguration>(targetApi: ((extend: IExtend) => Promise<T>) | string, omniaServiceId: guid, omniaManifestId: guid, callback?: (api: T, configuration: TConfiguration) => void | Promise<void>): void;
12
13
  function initApiHub(): Future<void>;
13
14
  }
@@ -1,6 +1,6 @@
1
- import { ColorDefinition, TextBlueprint, TypographySize, TypographySizes, TypographyType, TypographyTypes } from "@omnia/fx-models";
1
+ import { ColorDefinition, SpacingValue, TextBlueprint, TypographySize, TypographySizes, TypographyType, TypographyTypes } from "@omnia/fx-models";
2
2
  import { useColorSchemaStore, useTypographyBlueprintStore } from "@omnia/fx/ux";
3
3
  export declare const flowEditorStyles: {
4
4
  placeholder: string;
5
- container: (color: ColorDefinition, colors: ReturnType<typeof useColorSchemaStore>, blueprints: ReturnType<typeof useTypographyBlueprintStore>, toned: boolean, textBlueprint: TextBlueprint, typography: TypographyTypes | TypographyType, size: TypographySizes | TypographySize) => string;
5
+ container: (color: ColorDefinition, colors: ReturnType<typeof useColorSchemaStore>, blueprints: ReturnType<typeof useTypographyBlueprintStore>, toned: boolean, textBlueprint: TextBlueprint, typography: TypographyTypes | TypographyType, size: TypographySizes | TypographySize, rowSpacing: SpacingValue) => string;
6
6
  };
@@ -23,6 +23,8 @@ declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
23
23
  };
24
24
  settings: {
25
25
  gridWidth: number;
26
+ rowSpacing: import("@omnia/fx-models").SpacingValue;
27
+ textStyle: import("@omnia/fx-models").TextBlueprint;
26
28
  };
27
29
  };
28
30
  events: {
@@ -46,6 +48,8 @@ declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
46
48
  }>;
47
49
  onMutatedSettings: import("../../../../..").MessageBusExposeOnlySubscription<{
48
50
  gridWidth: number;
51
+ rowSpacing: import("@omnia/fx-models").SpacingValue;
52
+ textStyle: import("@omnia/fx-models").TextBlueprint;
49
53
  }>;
50
54
  } & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
51
55
  actions: {
@@ -23,6 +23,8 @@ declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
23
23
  };
24
24
  settings: {
25
25
  gridWidth: number;
26
+ rowSpacing: import("@omnia/fx-models").SpacingValue;
27
+ textStyle: import("@omnia/fx-models").TextBlueprint;
26
28
  };
27
29
  };
28
30
  events: {
@@ -46,6 +48,8 @@ declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
46
48
  }>;
47
49
  onMutatedSettings: import("../../../../..").MessageBusExposeOnlySubscription<{
48
50
  gridWidth: number;
51
+ rowSpacing: import("@omnia/fx-models").SpacingValue;
52
+ textStyle: import("@omnia/fx-models").TextBlueprint;
49
53
  }>;
50
54
  } & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
51
55
  actions: {
@@ -23,6 +23,8 @@ declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
23
23
  };
24
24
  settings: {
25
25
  gridWidth: number;
26
+ rowSpacing: import("@omnia/fx-models").SpacingValue;
27
+ textStyle: import("@omnia/fx-models").TextBlueprint;
26
28
  };
27
29
  };
28
30
  events: {
@@ -46,6 +48,8 @@ declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
46
48
  }>;
47
49
  onMutatedSettings: import("../../../../..").MessageBusExposeOnlySubscription<{
48
50
  gridWidth: number;
51
+ rowSpacing: import("@omnia/fx-models").SpacingValue;
52
+ textStyle: import("@omnia/fx-models").TextBlueprint;
49
53
  }>;
50
54
  } & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
51
55
  actions: {
@@ -23,6 +23,8 @@ declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
23
23
  };
24
24
  settings: {
25
25
  gridWidth: number;
26
+ rowSpacing: import("@omnia/fx-models").SpacingValue;
27
+ textStyle: import("@omnia/fx-models").TextBlueprint;
26
28
  };
27
29
  };
28
30
  events: {
@@ -46,6 +48,8 @@ declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
46
48
  }>;
47
49
  onMutatedSettings: import("../../../../..").MessageBusExposeOnlySubscription<{
48
50
  gridWidth: number;
51
+ rowSpacing: import("@omnia/fx-models").SpacingValue;
52
+ textStyle: import("@omnia/fx-models").TextBlueprint;
49
53
  }>;
50
54
  } & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
51
55
  actions: {
@@ -1,4 +1,4 @@
1
- import { FlowEditorActionRegistration, FlowEditorPluginSettings, guid, Future } from "@omnia/fx-models";
1
+ import { FlowEditorActionRegistration, FlowEditorPluginSettings, guid, Future, SpacingValue, TextBlueprint } from "@omnia/fx-models";
2
2
  import { FlowEditorPlugin, FlowEditorPluginContext, NodeSelection } from "@omnia/fx/ux";
3
3
  import { FlowContent } from "@omnia/fx/ux";
4
4
  export declare const useFlowEditorStore: () => {
@@ -23,6 +23,8 @@ export declare const useFlowEditorStore: () => {
23
23
  };
24
24
  settings: {
25
25
  gridWidth: number;
26
+ rowSpacing: SpacingValue;
27
+ textStyle: TextBlueprint;
26
28
  };
27
29
  };
28
30
  events: {
@@ -46,6 +48,8 @@ export declare const useFlowEditorStore: () => {
46
48
  }>;
47
49
  onMutatedSettings: import("@omnia/fx").MessageBusExposeOnlySubscription<{
48
50
  gridWidth: number;
51
+ rowSpacing: SpacingValue;
52
+ textStyle: TextBlueprint;
49
53
  }>;
50
54
  } & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
51
55
  actions: {
@@ -24,6 +24,8 @@ export declare const useFlowEditorToolbarStore: () => {
24
24
  };
25
25
  settings: {
26
26
  gridWidth: number;
27
+ rowSpacing: import("@omnia/fx-models").SpacingValue;
28
+ textStyle: import("@omnia/fx-models").TextBlueprint;
27
29
  };
28
30
  };
29
31
  events: {
@@ -47,6 +49,8 @@ export declare const useFlowEditorToolbarStore: () => {
47
49
  }>;
48
50
  onMutatedSettings: import("@omnia/fx").MessageBusExposeOnlySubscription<{
49
51
  gridWidth: number;
52
+ rowSpacing: import("@omnia/fx-models").SpacingValue;
53
+ textStyle: import("@omnia/fx-models").TextBlueprint;
50
54
  }>;
51
55
  } & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
52
56
  actions: {
@@ -475,6 +479,8 @@ export declare const useFlowEditorToolbarStore: () => {
475
479
  };
476
480
  settings: {
477
481
  gridWidth: number;
482
+ rowSpacing: import("@omnia/fx-models").SpacingValue;
483
+ textStyle: import("@omnia/fx-models").TextBlueprint;
478
484
  };
479
485
  };
480
486
  events: {
@@ -498,6 +504,8 @@ export declare const useFlowEditorToolbarStore: () => {
498
504
  }>;
499
505
  onMutatedSettings: import("@omnia/fx").MessageBusExposeOnlySubscription<{
500
506
  gridWidth: number;
507
+ rowSpacing: import("@omnia/fx-models").SpacingValue;
508
+ textStyle: import("@omnia/fx-models").TextBlueprint;
501
509
  }>;
502
510
  } & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
503
511
  actions: {
@@ -940,6 +948,8 @@ export declare const useFlowEditorToolbarStore: () => {
940
948
  };
941
949
  settings: {
942
950
  gridWidth: number;
951
+ rowSpacing: import("@omnia/fx-models").SpacingValue;
952
+ textStyle: import("@omnia/fx-models").TextBlueprint;
943
953
  };
944
954
  };
945
955
  events: {
@@ -963,6 +973,8 @@ export declare const useFlowEditorToolbarStore: () => {
963
973
  }>;
964
974
  onMutatedSettings: import("@omnia/fx").MessageBusExposeOnlySubscription<{
965
975
  gridWidth: number;
976
+ rowSpacing: import("@omnia/fx-models").SpacingValue;
977
+ textStyle: import("@omnia/fx-models").TextBlueprint;
966
978
  }>;
967
979
  } & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
968
980
  actions: {
@@ -1405,6 +1417,8 @@ export declare const useFlowEditorToolbarStore: () => {
1405
1417
  };
1406
1418
  settings: {
1407
1419
  gridWidth: number;
1420
+ rowSpacing: import("@omnia/fx-models").SpacingValue;
1421
+ textStyle: import("@omnia/fx-models").TextBlueprint;
1408
1422
  };
1409
1423
  };
1410
1424
  events: {
@@ -1428,6 +1442,8 @@ export declare const useFlowEditorToolbarStore: () => {
1428
1442
  }>;
1429
1443
  onMutatedSettings: import("@omnia/fx").MessageBusExposeOnlySubscription<{
1430
1444
  gridWidth: number;
1445
+ rowSpacing: import("@omnia/fx-models").SpacingValue;
1446
+ textStyle: import("@omnia/fx-models").TextBlueprint;
1431
1447
  }>;
1432
1448
  } & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
1433
1449
  actions: {
@@ -1870,6 +1886,8 @@ export declare const useFlowEditorToolbarStore: () => {
1870
1886
  };
1871
1887
  settings: {
1872
1888
  gridWidth: number;
1889
+ rowSpacing: import("@omnia/fx-models").SpacingValue;
1890
+ textStyle: import("@omnia/fx-models").TextBlueprint;
1873
1891
  };
1874
1892
  };
1875
1893
  events: {
@@ -1893,6 +1911,8 @@ export declare const useFlowEditorToolbarStore: () => {
1893
1911
  }>;
1894
1912
  onMutatedSettings: import("@omnia/fx").MessageBusExposeOnlySubscription<{
1895
1913
  gridWidth: number;
1914
+ rowSpacing: import("@omnia/fx-models").SpacingValue;
1915
+ textStyle: import("@omnia/fx-models").TextBlueprint;
1896
1916
  }>;
1897
1917
  } & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
1898
1918
  actions: {
@@ -1,5 +1,5 @@
1
- import { ColorDefinition, TextBlueprint, TypographySize, TypographySizes, TypographyType, TypographyTypes } from "@omnia/fx-models";
1
+ import { ColorDefinition, SpacingValue, TextBlueprint, TypographySize, TypographySizes, TypographyType, TypographyTypes } from "@omnia/fx-models";
2
2
  import { useColorSchemaStore, useTypographyBlueprintStore } from "@omnia/fx/ux";
3
3
  export declare const flowRendererStyles: {
4
- container: (color: ColorDefinition, colors: ReturnType<typeof useColorSchemaStore>, blueprints: ReturnType<typeof useTypographyBlueprintStore>, toned: boolean, textBlueprint: TextBlueprint, typography: TypographyTypes | TypographyType, size: TypographySizes | TypographySize) => string;
4
+ container: (color: ColorDefinition, colors: ReturnType<typeof useColorSchemaStore>, blueprints: ReturnType<typeof useTypographyBlueprintStore>, toned: boolean, textBlueprint: TextBlueprint, typography: TypographyTypes | TypographyType, size: TypographySizes | TypographySize, rowSpacing: SpacingValue) => string;
5
5
  };
@@ -1,4 +1,4 @@
1
- import { Future } from "@omnia/fx-models";
1
+ import { Future, SpacingValue, TextBlueprint } from "@omnia/fx-models";
2
2
  import { FlowRendererPlugin, FlowRendererPluginContext } from "../models";
3
3
  import { FlowContent } from "@omnia/fx/ux";
4
4
  export declare const useFlowRendererStore: () => {
@@ -12,6 +12,8 @@ export declare const useFlowRendererStore: () => {
12
12
  pluginsLoadedPromise: Future<void>;
13
13
  settings: {
14
14
  gridWidth: number;
15
+ rowSpacing: SpacingValue;
16
+ textStyle: TextBlueprint;
15
17
  };
16
18
  };
17
19
  events: {
@@ -24,6 +26,8 @@ export declare const useFlowRendererStore: () => {
24
26
  onMutatedPluginsLoadedPromise: import("@omnia/fx").MessageBusExposeOnlySubscription<Future<void>>;
25
27
  onMutatedSettings: import("@omnia/fx").MessageBusExposeOnlySubscription<{
26
28
  gridWidth: number;
29
+ rowSpacing: SpacingValue;
30
+ textStyle: TextBlueprint;
27
31
  }>;
28
32
  } & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
29
33
  actions: {
@@ -0,0 +1,16 @@
1
+ declare const _default: {
2
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{}>>, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
3
+ P: {};
4
+ B: {};
5
+ D: {};
6
+ C: {};
7
+ M: {};
8
+ Defaults: {};
9
+ }, Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, {}>;
10
+ __isFragment?: never;
11
+ __isTeleport?: never;
12
+ __isSuspense?: never;
13
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
14
+ propsDefinition: Omit<Readonly<{} & {}>, never>;
15
+ };
16
+ export default _default;
@@ -0,0 +1,20 @@
1
+ import { VersionedLayoutId } from "@omnia/fx-models";
2
+ export interface LayoutBlockSettings {
3
+ versionLayoutId: VersionedLayoutId;
4
+ }
5
+ declare const _default: {
6
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{}>>, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
7
+ P: {};
8
+ B: {};
9
+ D: {};
10
+ C: {};
11
+ M: {};
12
+ Defaults: {};
13
+ }, Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, {}>;
14
+ __isFragment?: never;
15
+ __isTeleport?: never;
16
+ __isSuspense?: never;
17
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
18
+ propsDefinition: Omit<Readonly<{} & {}>, never>;
19
+ };
20
+ export default _default;
@@ -1,7 +1,7 @@
1
1
  import { LayoutItemSettings, DisplayBreakPoint, DisplayBreakPointSetting } from "../../../models";
2
2
  export declare class BreakPointManager {
3
3
  private static breakPointArray;
4
- private static omniaUxLoc;
4
+ private static localizationStore;
5
5
  static createSettingsForDeviceBreakPoint(settings: LayoutItemSettings, breakPoint: DisplayBreakPoint): LayoutItemSettings;
6
6
  static createSettingsFromBreakPointSettings(settings: LayoutItemSettings, breakPointSettings: Array<DisplayBreakPointSetting>): LayoutItemSettings;
7
7
  static breakPoints(): Array<DisplayBreakPoint>;
@@ -1,5 +1,6 @@
1
- import { BackgroundSettings, SectionSettings } from "@omnia/fx-models";
1
+ import { BackgroundSettings, DisplayBreakPointSetting, SectionSettings } from "@omnia/fx-models";
2
2
  import { useColorSchemaStore } from "@omnia/fx/ux";
3
+ export declare function displayBreakpoints(breakPoints: Array<DisplayBreakPointSetting>): string;
3
4
  export declare const LayoutSectionBackgroundStyling: {
4
5
  styling: (settings: BackgroundSettings, backgroundUrl: string, colorSchema: ReturnType<typeof useColorSchemaStore>) => string;
5
6
  };
@@ -51,6 +51,9 @@ export declare class LayoutCanvasStore extends Store implements ILayoutCanvasSto
51
51
  scroll: {
52
52
  subscribe(fn: () => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
53
53
  };
54
+ calculateDynamicHeight: {
55
+ subscribe(fn: () => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
56
+ };
54
57
  setHeight: {
55
58
  subscribe(fn: (height: string) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
56
59
  };
@@ -89,6 +92,9 @@ export declare class LayoutCanvasStore extends Store implements ILayoutCanvasSto
89
92
  scroll: {
90
93
  subscribe(fn: (result: void) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
91
94
  };
95
+ calculateDynamicHeight: {
96
+ subscribe(fn: (result: void) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
97
+ };
92
98
  setHeight: {
93
99
  subscribe(fn: (result: void, height: string) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
94
100
  };
@@ -127,6 +133,9 @@ export declare class LayoutCanvasStore extends Store implements ILayoutCanvasSto
127
133
  scroll: {
128
134
  subscribe(fn: (failureReason: any) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
129
135
  };
136
+ calculateDynamicHeight: {
137
+ subscribe(fn: (failureReason: any) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
138
+ };
130
139
  setHeight: {
131
140
  subscribe(fn: (failureReason: any, height: string) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
132
141
  };
@@ -163,6 +172,7 @@ export declare class LayoutCanvasStore extends Store implements ILayoutCanvasSto
163
172
  };
164
173
  } & {
165
174
  scroll: () => void;
175
+ calculateDynamicHeight: () => void;
166
176
  setHeight: (height: string) => void;
167
177
  setWidth: (width: string) => void;
168
178
  setScrolling: (scrolling: import("@omnia/fx-models").OScrollTypesCombination) => void;
@@ -1,4 +1,4 @@
1
- import { guid, LinkItem } from "@omnia/fx-models";
1
+ import { LinkItem, LinkProviderId } from "@omnia/fx-models";
2
2
  import { DefineEmit } from "@omnia/fx/ux";
3
3
  import "./LinkPicker.css";
4
4
  import { LinkPickerRegistration } from "@omnia/fx/ux";
@@ -22,7 +22,7 @@ declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
22
22
  } & {
23
23
  editMode?: boolean;
24
24
  } & {
25
- providerFilter?: guid[];
25
+ selectableProviders?: LinkProviderId[];
26
26
  } & {
27
27
  styles?: {
28
28
  toolbar?: import("typestyle/lib/types").NestedCSSProperties;
@@ -1,6 +1,6 @@
1
1
  import { DefineProp, DefineSlot, DefineVModel } from "@omnia/fx/ux";
2
2
  import { LinkItem } from "@omnia/fx-models";
3
3
  export type targetOpts = "_self" | "_target";
4
- export type InternalLinkRender = DefineSlot<"renderer", (link: LinkItem) => void> & DefineProp<"target", targetOpts, false, "_self"> & DefineProp<"datavalue", string, false> & DefineVModel<"", LinkItem>;
4
+ export type InternalLinkRender = DefineSlot<"renderer", (link: LinkItem) => void> & DefineVModel<"", LinkItem> & DefineProp<"hideTitle", boolean> & DefineProp<"disabled", boolean>;
5
5
  declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<InternalLinkRender>) => any;
6
6
  export default _default;
@@ -1,7 +1,8 @@
1
- import { ILinkItemHandlerRegistrationApi } from "@omnia/fx-models";
1
+ import { ILinkItemHandlerRegistrationApi, LinkProviderId } from "@omnia/fx-models";
2
2
  import { ILinkItemHandler } from "@omnia/fx/ux";
3
3
  export declare class InternalLinkHandlerRegistrationApi implements ILinkItemHandlerRegistrationApi {
4
4
  linkItemHandlers: ILinkItemHandler[];
5
5
  registerLinkRenderer(linkItemHandler: ILinkItemHandler): boolean;
6
+ getLinkHandler(linkProviderId: LinkProviderId): Promise<ILinkItemHandler>;
6
7
  getAllRegistration(): ILinkItemHandler[];
7
8
  }
@@ -0,0 +1,5 @@
1
+ import { ILinkPickerRegistrationApi } from "@omnia/fx-models";
2
+ import { LinkPickerRegistration } from "@omnia/fx/ux";
3
+ export interface ILinkProviderRegistrationApiInternal extends ILinkPickerRegistrationApi {
4
+ getAllLinkPickers: () => LinkPickerRegistration[];
5
+ }
@@ -1,32 +1,41 @@
1
+ import { LinkItem } from "@omnia/fx-models";
1
2
  import { LinkPickerRegistration } from "@omnia/fx/ux";
2
3
  export declare const useLinkPickerStore: () => {
3
- state: {
4
- providers: LinkPickerRegistration[];
5
- };
6
- getters: {
7
- currentProvider: () => LinkPickerRegistration[];
8
- getProviders: (filters: string[]) => LinkPickerRegistration[];
4
+ get: {
5
+ readonly pickers: LinkPickerRegistration[];
6
+ link: LinkItem;
9
7
  };
10
8
  mutate: {
11
- providers: (value: LinkPickerRegistration[] | ((prev: LinkPickerRegistration[]) => LinkPickerRegistration[])) => void;
9
+ pickers: (value: LinkPickerRegistration[] | ((prev: LinkPickerRegistration[]) => LinkPickerRegistration[])) => void;
10
+ link: (value: LinkItem | ((prev: LinkItem) => LinkItem)) => void;
12
11
  };
13
12
  actions: {
14
13
  onDispatching: {
14
+ setLink: {
15
+ subscribe(fn: (link: LinkItem) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
16
+ };
15
17
  ensureLinkPickerProviders: {
16
18
  subscribe(fn: () => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
17
19
  };
18
20
  };
19
21
  onDispatched: {
22
+ setLink: {
23
+ subscribe(fn: (result: void, link: LinkItem) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
24
+ };
20
25
  ensureLinkPickerProviders: {
21
26
  subscribe(fn: (result: LinkPickerRegistration[]) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
22
27
  };
23
28
  };
24
29
  onFailure: {
30
+ setLink: {
31
+ subscribe(fn: (failureReason: any, link: LinkItem) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
32
+ };
25
33
  ensureLinkPickerProviders: {
26
34
  subscribe(fn: (failureReason: any) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
27
35
  };
28
36
  };
29
37
  } & {
38
+ setLink(link: LinkItem): void;
30
39
  ensureLinkPickerProviders(): Promise<LinkPickerRegistration[]>;
31
40
  };
32
41
  } & {
@@ -1,5 +1,7 @@
1
1
  import { IIcon } from "@omnia/fx-models";
2
- import { VNodeChild } from "vue";
2
+ import { TdHTMLAttributes, VNodeChild } from "vue";
3
+ import { ConstructComponentProps } from "@omnia/fx/ux";
4
+ import { PublicDataTableRowProps } from "../oxide/datatable/RowRenderer";
3
5
  export type SelectItemKey = boolean | string | (string | number)[] | ((item: Record<string, any>, fallback?: any) => any);
4
6
  export type DataTableCompareFunction<T = any> = (a: T, b: T) => number;
5
7
  export type DataTableHeader = {
@@ -29,7 +31,16 @@ export interface IDataTableRowRenderer<T = any> {
29
31
  addAction(node: VNodeChild): Pick<IDataTableRowRenderer, "addCell" | "addAction">;
30
32
  addIcon(icon: IIcon): any;
31
33
  }
34
+ export interface IDataTableRow<T = any> {
35
+ value: T;
36
+ index: number;
37
+ Row: RowElement;
38
+ Cell: CellElement;
39
+ }
40
+ type CellElement = (props: ConstructComponentProps<Pick<TdHTMLAttributes, "colspan" | "rowspan" | "headers">>) => any;
41
+ type RowElement = (props: ConstructComponentProps<PublicDataTableRowProps>) => any;
32
42
  export type SortItem = {
33
43
  key: string;
34
44
  order?: boolean | "asc" | "desc";
35
45
  };
46
+ export {};
@@ -1,12 +1,12 @@
1
1
  import { IIcon } from "@omnia/fx/ux";
2
- import { ILinkPickerProvider } from "./ILinkPickerProvider";
3
- import { guid, LinkItem } from "@omnia/fx-models";
4
- export interface LinkPickerRegistration extends ILinkPickerProvider {
5
- id: guid;
2
+ import { guid, LinkItem, LinkProviderId } from "@omnia/fx-models";
3
+ export interface LinkPickerRegistration {
4
+ id: LinkProviderId;
6
5
  name: string;
7
6
  icon: IIcon;
8
- elementPickerToRender: string;
7
+ componentManifestToRender: guid;
9
8
  weight: number;
9
+ onSaved?: (link: LinkItem) => Promise<LinkItem>;
10
10
  /**
11
11
  * Provider use to handle onClick, href on <a> tag of Link item
12
12
  *
@@ -14,10 +14,4 @@ export interface LinkPickerRegistration extends ILinkPickerProvider {
14
14
  */
15
15
  handlerProviderId?: guid;
16
16
  getProviderProperties?: () => object;
17
- /**
18
- * Post process after link process is saved
19
- * @param link
20
- * @returns Promise result of link item
21
- */
22
- onSaved?: (link: LinkItem) => Promise<LinkItem>;
23
17
  }
@@ -1,12 +1,5 @@
1
- import { ConstructComponentProps, DataTableHeader, DefineEmit, DefineProp, DefinePropTheming, DefineSlot, DefineType, DefineVModel, IDataTableRowRenderer, ItemValueType, SelectItemKey, SortItem } from "@omnia/fx/ux";
2
- import { TdHTMLAttributes, VNodeChild } from "vue";
3
- import { PublicDataTableRowProps } from "./RowRenderer";
4
- export interface IDataTableRow<T = any> {
5
- value: T;
6
- index: number;
7
- Row: RowElement;
8
- Cell: CellElement;
9
- }
1
+ import { DataTableHeader, DefineEmit, DefineProp, DefinePropTheming, DefineSlot, DefineType, DefineVModel, IDataTableRow, IDataTableRowRenderer, ItemValueType, SelectItemKey, SortItem } from "@omnia/fx/ux";
2
+ import { VNodeChild } from "vue";
10
3
  export type DataTableOptions = {
11
4
  page: number;
12
5
  itemsPerPage: number;
@@ -25,10 +18,8 @@ type ClientPaginationPageProps<TItem> = ItemsPerPageProp & PageProp;
25
18
  type ClientPaginationScrollProps<TItem> = ItemHeightProp;
26
19
  type ServerPaginationPageProps = ItemsPerPageProp & PageProp & DefineProp<"itemsLength", number, true, null, "Number of all items.">;
27
20
  type ServerPaginationScrollProps<TItem> = ShowLoadMoreProp & DefineEmit<"visible:lastItem", (item: TItem) => void>;
28
- type CellElement = (props: ConstructComponentProps<Pick<TdHTMLAttributes, "colspan" | "rowspan" | "headers">>) => any;
29
- type RowElement = (props: ConstructComponentProps<PublicDataTableRowProps>) => any;
30
21
  declare const defaultHeaders: DataTableHeader[];
31
22
  declare const emptyArray: any[];
32
23
  export type DataTableProps<TItem, TVariant> = VariantType<TVariant> & DataTablePropsBase<TItem> & DefineType<TVariant extends "client-pagination-scroll" ? ClientPaginationScrollProps<TItem> : TVariant extends "client-pagination-page" ? ClientPaginationPageProps<TItem> : TVariant extends "server-pagination-page" ? ServerPaginationPageProps : TVariant extends "server-pagination-scroll" ? ServerPaginationScrollProps<TItem> : DefaultProps>;
33
- declare const _default: <TItem extends unknown, TVariant extends "default" | "client-pagination-scroll" | "client-pagination-page" | "server-pagination-scroll" | "server-pagination-page" = "default">(props: ConstructComponentProps<DataTableProps<TItem, TVariant>>) => any;
24
+ declare const _default: <TItem extends unknown, TVariant extends "default" | "client-pagination-scroll" | "client-pagination-page" | "server-pagination-scroll" | "server-pagination-page" = "default">(props: import("@omnia/fx/ux").ConstructComponentProps<DataTableProps<TItem, TVariant>>) => any;
34
25
  export default _default;
@@ -1,5 +1,5 @@
1
1
  import { OScrollTypesCombination } from "@omnia/fx-models";
2
2
  import { DefineProp, DefinePropTheming, useScrollContainerStore } from "@omnia/fx/ux";
3
- type ScrollContainerProps = DefinePropTheming & DefineProp<"class", String | String[]> & DefineProp<"height", string, false, null, "Sets the width of the flex."> & DefineProp<"width", string, false, null, "Sets the width of the column.."> & DefineProp<"compensatScrollbar", boolean, false, false, "Adds a left margin to compensate for the scrollbar."> & DefineProp<"filled", boolean, false, false, "If the background should be filled."> & DefineProp<"toned", boolean, false, false, "If the background is using toned colors."> & DefineProp<"disableScrolling", boolean, false, false, "Disables the scrolling and sets the overflow to hidden."> & DefineProp<"getApi", (store: ReturnType<typeof useScrollContainerStore>) => void, false, null, "callback to get a reference to the scrolling store. The store is used to interact with the scrolling component."> & DefineProp<"scrolling", OScrollTypesCombination, false, "y", "Sets the scroll type of the container.">;
3
+ type ScrollContainerProps = DefinePropTheming & DefineProp<"class", String | String[]> & DefineProp<"height", string, false, null, "Sets the height of the container"> & DefineProp<"width", string, false, null, "Sets the width of the column.."> & DefineProp<"compensatScrollbar", boolean, false, false, "Adds a left margin to compensate for the scrollbar."> & DefineProp<"filled", boolean, false, false, "If the background should be filled."> & DefineProp<"dynamicHeight", boolean, false, false, "Calculates a dynamic height based on the position in the browser"> & DefineProp<"toned", boolean, false, false, "If the background is using toned colors."> & DefineProp<"disableScrolling", boolean, false, false, "Disables the scrolling and sets the overflow to hidden."> & DefineProp<"getApi", (store: ReturnType<typeof useScrollContainerStore>) => void, false, null, "callback to get a reference to the scrolling store. The store is used to interact with the scrolling component."> & DefineProp<"scrolling", OScrollTypesCombination, false, "y", "Sets the scroll type of the container.">;
4
4
  declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<ScrollContainerProps>) => any;
5
5
  export default _default;
@@ -26,6 +26,9 @@ export declare const useScrollContainerStore: () => {
26
26
  scroll: {
27
27
  subscribe(fn: () => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
28
28
  };
29
+ calculateDynamicHeight: {
30
+ subscribe(fn: () => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
31
+ };
29
32
  setHeight: {
30
33
  subscribe(fn: (height: string) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
31
34
  };
@@ -64,6 +67,9 @@ export declare const useScrollContainerStore: () => {
64
67
  scroll: {
65
68
  subscribe(fn: (result: void) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
66
69
  };
70
+ calculateDynamicHeight: {
71
+ subscribe(fn: (result: void) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
72
+ };
67
73
  setHeight: {
68
74
  subscribe(fn: (result: void, height: string) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
69
75
  };
@@ -102,6 +108,9 @@ export declare const useScrollContainerStore: () => {
102
108
  scroll: {
103
109
  subscribe(fn: (failureReason: any) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
104
110
  };
111
+ calculateDynamicHeight: {
112
+ subscribe(fn: (failureReason: any) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
113
+ };
105
114
  setHeight: {
106
115
  subscribe(fn: (failureReason: any, height: string) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
107
116
  };
@@ -138,6 +147,7 @@ export declare const useScrollContainerStore: () => {
138
147
  };
139
148
  } & {
140
149
  scroll: () => void;
150
+ calculateDynamicHeight: () => void;
141
151
  setHeight: (height: string) => void;
142
152
  setWidth: (width: string) => void;
143
153
  setScrolling: (scrolling: OScrollTypesCombination) => void;
@@ -249,7 +249,7 @@ export interface VelcronImageDefinition extends VelcronDefinitionWithEditMode {
249
249
  ratio?: VelcronImageRatios | string;
250
250
  width?: number | string;
251
251
  height?: number | string;
252
- cover?: VelcronBindableProp<boolean>;
252
+ fit?: "contain" | "cover";
253
253
  borderRadius?: VelcronDimensions;
254
254
  events?: VelcronOnPressEvent;
255
255
  }
@@ -1,5 +1,5 @@
1
1
  import { EditorLocation, LinkItem, VelcronLinkResolverEditorSettings } from "@omnia/fx-models";
2
2
  import { DefineProp, DefineVModel } from "@omnia/fx/ux";
3
- type LinkEditorProps = DefineProp<"location", EditorLocation> & DefineProp<"settings", VelcronLinkResolverEditorSettings> & DefineVModel<"", LinkItem[]>;
3
+ type LinkEditorProps = DefineProp<"location", EditorLocation> & DefineProp<"settings", VelcronLinkResolverEditorSettings> & DefineVModel<"", LinkItem>;
4
4
  declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<LinkEditorProps>) => any;
5
5
  export default _default;
@@ -28,6 +28,9 @@ declare const _default: {
28
28
  layoutBackgroundImageElementId: {
29
29
  type: StringConstructor;
30
30
  };
31
+ noScroll: {
32
+ type: BooleanConstructor;
33
+ };
31
34
  appInstanceId: {
32
35
  type: import("vue").PropType<guid>;
33
36
  required: true;
@@ -62,6 +65,9 @@ declare const _default: {
62
65
  layoutBackgroundImageElementId: {
63
66
  type: StringConstructor;
64
67
  };
68
+ noScroll: {
69
+ type: BooleanConstructor;
70
+ };
65
71
  appInstanceId: {
66
72
  type: import("vue").PropType<guid>;
67
73
  required: true;
@@ -72,6 +78,7 @@ declare const _default: {
72
78
  }>>, {
73
79
  layoutThemeDefinition: ThemeDefinition;
74
80
  blockThemeDefinition: ThemeDefinition;
81
+ noScroll: boolean;
75
82
  enableAlternateLayout: boolean;
76
83
  }, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
77
84
  P: {};
@@ -107,6 +114,9 @@ declare const _default: {
107
114
  layoutBackgroundImageElementId: {
108
115
  type: StringConstructor;
109
116
  };
117
+ noScroll: {
118
+ type: BooleanConstructor;
119
+ };
110
120
  appInstanceId: {
111
121
  type: import("vue").PropType<guid>;
112
122
  required: true;
@@ -117,6 +127,7 @@ declare const _default: {
117
127
  }>>, () => JSX.Element, {}, {}, {}, {
118
128
  layoutThemeDefinition: ThemeDefinition;
119
129
  blockThemeDefinition: ThemeDefinition;
130
+ noScroll: boolean;
120
131
  enableAlternateLayout: boolean;
121
132
  }>;
122
133
  __isFragment?: never;
@@ -149,6 +160,9 @@ declare const _default: {
149
160
  layoutBackgroundImageElementId: {
150
161
  type: StringConstructor;
151
162
  };
163
+ noScroll: {
164
+ type: BooleanConstructor;
165
+ };
152
166
  appInstanceId: {
153
167
  type: import("vue").PropType<guid>;
154
168
  required: true;
@@ -159,6 +173,7 @@ declare const _default: {
159
173
  }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
160
174
  layoutThemeDefinition: ThemeDefinition;
161
175
  blockThemeDefinition: ThemeDefinition;
176
+ noScroll: boolean;
162
177
  enableAlternateLayout: boolean;
163
178
  }, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
164
179
  propsDefinition: Omit<Readonly<{
@@ -170,6 +185,7 @@ declare const _default: {
170
185
  layoutThemeDefinition?: ThemeDefinition;
171
186
  blockThemeDefinition?: ThemeDefinition;
172
187
  layoutProvider?: string;
188
+ noScroll?: boolean;
173
189
  publishedVersionReference?: IVersionReference;
174
190
  layoutBackgroundImageElementId?: string;
175
191
  enableAlternateLayout?: boolean;
@@ -61,8 +61,8 @@ import wcd91fa8e10e3b4350bb158f9cbeace0e8 from './ux/journey/SettingsJourneyMenu
61
61
  import wc3392707566c844e39f57097aade4e81c from './ux/jsonexportimport/ExportImport';
62
62
  import wc20b4e8166fb44f2b8b240724eb5f2db2 from './ux/languagepicker/LanguagePicker';
63
63
  import wc6c2ac8bf4da44a2b8e544eaf5b42099f from './ux/limited-label/LimitedLabel';
64
- import wc9e7b4a48efba4dc390986eeb638b34cd from './ux/linkpicker/LinkPicker';
65
- import wc4892102894624a4ca84e67df764cbe93 from './ux/linkpicker/LinkRenderer';
64
+ import wc9e7b4a48efba4dc390986eeb638b34cd from './ux/links/LinkPicker';
65
+ import wc4892102894624a4ca84e67df764cbe93 from './ux/links/LinkRenderer';
66
66
  import wc106dba3f206e4ad7bbb28e574e3da49e from './ux/magiclink/MagicLinkLogin';
67
67
  import wc168b37eb8cbc4e46944cbf9a6a5e9063 from './ux/magiclink/MagicLinkSuccess';
68
68
  import wcd836de74ad894f4999e21046b1ba2cab from './ux/magiclink/MagicLinkFailure';
@@ -220,6 +220,8 @@ import wc2f4b3c8e5d6a4f7bbc9d1e0a2b3c4d5e from './ux/image/scalingsettings/Scali
220
220
  import wc8e03e2f7fb024945bc51138b77d06088 from './ux/layoutcanvas/editor/LayoutEditorCanvas';
221
221
  import wc4aed54beb02341e3a6cbde5af5fb6c78 from './ux/layoutcanvas/layoutactionhandler/LayoutAction';
222
222
  import wc02c473f7041b40038ceecdf09e6ba4ca from './ux/layoutcanvas/layoutactionhandler/LayoutActionSettings';
223
+ import wc057def31f5f5403d91b2da569de2fdff from './ux/layoutcanvas/layoutblock/LayoutBlock';
224
+ import wc5d6ec741cf6e4d8ab005abdda288ceed from './ux/layoutcanvas/layoutblock/LayoutBlockSettings';
223
225
  import wc0b2ee63495854227a082987161a9e641 from './ux/layoutcanvas/renderer/LayoutBlockRendererHelper';
224
226
  import wcf346db89a53b404690b1795429fb0162 from './ux/layoutcanvas/renderer/LayoutRendererCanvas';
225
227
  import wc96c7e84dfb66450796fe123aea7999c5 from './ux/mediagallery/view/PhotoWallWithSliderDisplayRenderer';
@@ -2787,22 +2789,6 @@ declare global {
2787
2789
  } : typeof wc8e03e2f7fb024945bc51138b77d06088;
2788
2790
  };
2789
2791
  "block": {
2790
- "renderer": {
2791
- "helper": typeof wc0b2ee63495854227a082987161a9e641 extends {
2792
- propsDefinition: infer TProp;
2793
- } ? {
2794
- new (...args: any[]): {
2795
- $props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
2796
- };
2797
- } : typeof wc0b2ee63495854227a082987161a9e641;
2798
- };
2799
- "placeholder": typeof wc4834285963564938a31a1ac1dfb1b5d8 extends {
2800
- propsDefinition: infer TProp;
2801
- } ? {
2802
- new (...args: any[]): {
2803
- $props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
2804
- };
2805
- } : typeof wc4834285963564938a31a1ac1dfb1b5d8;
2806
2792
  "settings": {
2807
2793
  "header": typeof wc2e52c0d860ec498fa3abf6b76eacc45d extends {
2808
2794
  propsDefinition: infer TProp;
@@ -2840,6 +2826,29 @@ declare global {
2840
2826
  };
2841
2827
  } : typeof wc53cbd5702e9e41ffa95093586c0e001d;
2842
2828
  };
2829
+ "renderer": {
2830
+ "helper": typeof wc0b2ee63495854227a082987161a9e641 extends {
2831
+ propsDefinition: infer TProp;
2832
+ } ? {
2833
+ new (...args: any[]): {
2834
+ $props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
2835
+ };
2836
+ } : typeof wc0b2ee63495854227a082987161a9e641;
2837
+ };
2838
+ "placeholder": typeof wc4834285963564938a31a1ac1dfb1b5d8 extends {
2839
+ propsDefinition: infer TProp;
2840
+ } ? {
2841
+ new (...args: any[]): {
2842
+ $props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
2843
+ };
2844
+ } : typeof wc4834285963564938a31a1ac1dfb1b5d8;
2845
+ "settings$": typeof wc5d6ec741cf6e4d8ab005abdda288ceed extends {
2846
+ propsDefinition: infer TProp;
2847
+ } ? {
2848
+ new (...args: any[]): {
2849
+ $props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
2850
+ };
2851
+ } : typeof wc5d6ec741cf6e4d8ab005abdda288ceed;
2843
2852
  "title": {
2844
2853
  "settings": typeof wcbeda6edf4c614323955fc06c6326f7e9 extends {
2845
2854
  propsDefinition: infer TProp;
@@ -2857,6 +2866,13 @@ declare global {
2857
2866
  };
2858
2867
  } : typeof wc1b1dd31ac8644b498ddf378a431dfb19;
2859
2868
  };
2869
+ "block$": typeof wc057def31f5f5403d91b2da569de2fdff extends {
2870
+ propsDefinition: infer TProp;
2871
+ } ? {
2872
+ new (...args: any[]): {
2873
+ $props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
2874
+ };
2875
+ } : typeof wc057def31f5f5403d91b2da569de2fdff;
2860
2876
  "renderer": {
2861
2877
  "canvas": typeof wcf346db89a53b404690b1795429fb0162 extends {
2862
2878
  propsDefinition: infer TProp;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx",
3
3
  "license": "MIT",
4
- "version": "8.0.291-dev",
4
+ "version": "8.0.293-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.291-dev",
23
+ "@omnia/fx-models": "8.0.293-dev",
24
24
  "@microsoft/signalr": "6.0.1",
25
25
  "broadcast-channel": "4.8.0",
26
26
  "dayjs": "1.11.7",
@@ -1,5 +0,0 @@
1
- import { ILinkProviderRegistrationApi } from "@omnia/fx-models";
2
- import { LinkPickerRegistration } from "@omnia/fx/ux";
3
- export interface ILinkProviderRegistrationApiInternal extends ILinkProviderRegistrationApi {
4
- getAllLinkProviders: () => LinkPickerRegistration[];
5
- }