@omnia/fx-spfx 8.0.192-dev → 8.0.194-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/internal-do-not-import-from-here/components/IOmniaWPContainerSettings.d.ts +2 -2
- package/internal-do-not-import-from-here/components/OmniaWPContainer.d.ts +2 -1
- package/internal-do-not-import-from-here/components/OmniaWPContainerSettings.d.ts +2 -2
- package/internal-do-not-import-from-here/models/Context.d.ts +3 -3
- package/package.json +2 -2
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { TsxAllowUnknowProperties } from "@omnia/fx/ux";
|
|
2
|
-
import {
|
|
2
|
+
import { guid } from "../../models";
|
|
3
3
|
export interface IOmniaWPContainerSettings {
|
|
4
4
|
[name: string]: any;
|
|
5
5
|
onClosed?: () => void;
|
|
6
|
-
onChange?: (blockManifestId:
|
|
6
|
+
onChange?: (blockManifestId: guid, elementName: string) => void;
|
|
7
7
|
}
|
|
8
8
|
declare global {
|
|
9
9
|
namespace JSX {
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { SettingsService } from "../../../fx/services";
|
|
2
2
|
import { VueComponentBase, BlockCatalogStore } from "../../ux";
|
|
3
|
+
import { guid } from "../../models";
|
|
3
4
|
export type WebComponentDefinition = {
|
|
4
5
|
id: string;
|
|
5
6
|
name: string;
|
|
@@ -9,7 +10,7 @@ export type WebComponentDefinition = {
|
|
|
9
10
|
};
|
|
10
11
|
};
|
|
11
12
|
export declare class OmniaWPContainerComponent extends VueComponentBase {
|
|
12
|
-
webpartid:
|
|
13
|
+
webpartid: guid;
|
|
13
14
|
displaymode: any;
|
|
14
15
|
private loc;
|
|
15
16
|
private localizationStore;
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { IWebComponentInstance } from "@omnia/fx";
|
|
2
2
|
import { IOmniaWPContainerSettings } from "./IOmniaWPContainerSettings";
|
|
3
3
|
import { VueComponentBase, BlockCatalogStore } from "../../ux";
|
|
4
|
-
import { BlockRegistration,
|
|
4
|
+
import { BlockRegistration, guid } from "../../models";
|
|
5
5
|
import "./styles/OmniaWPContainerSettings.css";
|
|
6
6
|
export declare class OmniaWPContainerSettings extends VueComponentBase implements IWebComponentInstance, IOmniaWPContainerSettings {
|
|
7
7
|
opened: boolean;
|
|
8
8
|
onClosed: () => void;
|
|
9
|
-
onChange: (blockManifestId:
|
|
9
|
+
onChange: (blockManifestId: guid, elementName: string) => void;
|
|
10
10
|
private omniaTheming;
|
|
11
11
|
private omniaCtx;
|
|
12
12
|
blockCatalogStore: BlockCatalogStore;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@omnia/fx-spfx",
|
|
3
3
|
"license": "MIT",
|
|
4
|
-
"version": "8.0.
|
|
4
|
+
"version": "8.0.194-dev",
|
|
5
5
|
"description": "Provide Omnia Fx Sharepoint Stuffs.",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
],
|
|
20
20
|
"author": "Precio Fishbone",
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@omnia/fx": "8.0.
|
|
22
|
+
"@omnia/fx": "8.0.194-dev"
|
|
23
23
|
},
|
|
24
24
|
"typings": "./index.d.ts",
|
|
25
25
|
"bugs": {
|