@omnia/fx 7.8.6-preview → 7.8.7-preview

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.
@@ -5,4 +5,5 @@ export interface SPFXWebComponentDefinition extends WebComponentDefinition {
5
5
  }
6
6
  export interface SPFXStandaloneWebComponentDefinition extends WebComponentDefinition {
7
7
  showInSpfxGallery: boolean;
8
+ documentationUrl: string;
8
9
  }
@@ -1,9 +1,12 @@
1
1
  export interface OmniaBlock {
2
2
  category?: string;
3
3
  }
4
+ export interface SpfxWebpartGalleryOptions {
5
+ documentationUrl?: string;
6
+ }
4
7
  declare module "../../../tooling/composers/ComponentComposer" {
5
8
  interface IWebComponentComposer {
6
9
  registerSpfxWebpart?(omniaBlock?: OmniaBlock): IWebComponentComposer;
7
- registerSpfxWebpartGallery?(): IWebComponentComposer;
10
+ registerSpfxWebpartGallery?(options?: SpfxWebpartGalleryOptions): IWebComponentComposer;
8
11
  }
9
12
  }
@@ -0,0 +1,17 @@
1
+ import { TsxAllowUnknowProperties, MediaPickerProviderComponentProps } from "../../";
2
+ export interface IUnsplashProviderComponent extends MediaPickerProviderComponentProps {
3
+ [name: string]: any;
4
+ }
5
+ declare global {
6
+ namespace VueTsxSupport.JSX {
7
+ interface Element {
8
+ }
9
+ interface ElementClass {
10
+ }
11
+ interface ElementAttributesProperty {
12
+ }
13
+ interface IntrinsicElements {
14
+ "omfx-media-picker-unsplash-provider": TsxAllowUnknowProperties<IUnsplashProviderComponent>;
15
+ }
16
+ }
17
+ }
@@ -0,0 +1,11 @@
1
+ export declare module UnsplashProviderLocalization {
2
+ const namespace = "Omnia.Ux.UnsplashProvider";
3
+ interface locInterface {
4
+ Title: string;
5
+ FeatureTitle: string;
6
+ NewFeatureDescription: string;
7
+ DowloadImageFailed: string;
8
+ PhotoBy: string;
9
+ PhotosProviderBy: string;
10
+ }
11
+ }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx",
3
3
  "license": "MIT",
4
- "version": "7.8.6-preview",
4
+ "version": "7.8.7-preview",
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": "7.8.6-preview",
23
+ "@omnia/fx-models": "7.8.7-preview",
24
24
  "@microsoft/signalr": "6.0.1",
25
25
  "broadcast-channel": "4.8.0",
26
26
  "dayjs": "1.10.7",