@omnia/fx-models 8.0.290-dev → 8.0.292-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.
@@ -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
|
-
|
252
|
+
fit?: "contain" | "cover";
|
253
253
|
borderRadius?: VelcronDimensions;
|
254
254
|
events?: VelcronOnPressEvent;
|
255
255
|
}
|
package/links/LinkItem.d.ts
CHANGED
@@ -1,8 +1,9 @@
|
|
1
1
|
import { guid, Id } from "@omnia/fx-models/internal-do-not-import-from-here/shared";
|
2
2
|
import { IconPickerModel } from "../Icon";
|
3
3
|
export type LinkProviderId = Id<guid, "LinkProviderId">;
|
4
|
+
export declare function LinkProviderId(id: guid): LinkProviderId;
|
4
5
|
export interface LinkItem {
|
5
|
-
providerId
|
6
|
+
providerId?: LinkProviderId;
|
6
7
|
linkType?: string;
|
7
8
|
title: string;
|
8
9
|
url: string;
|
package/links/LinkItem.js
CHANGED
package/package.json
CHANGED
@@ -3,6 +3,7 @@ import { ILinkItemHandler } from "../../ux/models/linkpicker/LinkItemHandler";
|
|
3
3
|
import { LinkProviderId } from "../links";
|
4
4
|
export interface ILinkItemHandlerRegistrationApi {
|
5
5
|
registerLinkRenderer: (linkItemHandler: ILinkItemHandler) => boolean;
|
6
|
+
getLinkHandler(linkProviderId: LinkProviderId): Promise<ILinkItemHandler>;
|
6
7
|
}
|
7
8
|
declare module "./UxApi" {
|
8
9
|
interface IOmniaUxApi {
|