@omnia/fx 7.8.98-preview → 7.8.100-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.
- package/internal-do-not-import-from-here/spfx/components/OmniaWPContainer.d.ts +17 -37
- package/internal-do-not-import-from-here/spfx/components/OmniaWPContainerSettings.d.ts +20 -27
- package/internal-do-not-import-from-here/spfx/components/renderer/Settings.d.ts +24 -0
- package/internal-do-not-import-from-here/spfx/components/useOmniaWP.d.ts +69 -0
- package/internal-do-not-import-from-here/ux/identities/IdentityRenderer.d.ts +24 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/block/Css.d.ts +5 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/block/Header.d.ts +5 -0
- package/internal-do-not-import-from-here/wcdefinitions.json +1 -1
- package/internal-do-not-import-from-here/wctypings.d.ts +6 -0
- package/package.json +2 -2
- package/internal-do-not-import-from-here/spfx/components/IOmniaWPContainerSettings.d.ts +0 -17
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
import { SettingsService } from "../../../fx/services";
|
|
2
|
-
import { VueComponentBase, BlockCatalogStore } from "../../ux";
|
|
3
1
|
export type WebComponentDefinition = {
|
|
4
2
|
id: string;
|
|
5
3
|
name: string;
|
|
@@ -8,39 +6,21 @@ export type WebComponentDefinition = {
|
|
|
8
6
|
html?: string;
|
|
9
7
|
};
|
|
10
8
|
};
|
|
11
|
-
|
|
9
|
+
declare const _default: (import("vue").VueConstructor<import("vue-tsx-support")._TsxComponentInstanceV3<import("vue/types/umd"), {}, import("vue-tsx-support").PropsForOutside<{
|
|
12
10
|
webpartid: string;
|
|
13
|
-
displaymode:
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
private pfxWPClasses;
|
|
30
|
-
created(): void;
|
|
31
|
-
mounted(): void;
|
|
32
|
-
private init;
|
|
33
|
-
private handleSettingsElementUpdated;
|
|
34
|
-
private subcribeOpenPaneEvent;
|
|
35
|
-
private populateComponentTitle;
|
|
36
|
-
private saveComponentSettings;
|
|
37
|
-
private onSelectComponentChanged;
|
|
38
|
-
private onDisplayModeChanged;
|
|
39
|
-
private subcribeMessage;
|
|
40
|
-
private saveSettings;
|
|
41
|
-
private closeSettings;
|
|
42
|
-
private closeSettingsComponentForm;
|
|
43
|
-
private renderSettingsComponent;
|
|
44
|
-
private renderDisplayComponent;
|
|
45
|
-
render(): VueTsxSupport.JSX.Element;
|
|
46
|
-
}
|
|
11
|
+
displaymode: unknown;
|
|
12
|
+
}, never>, any, any, any>> & {
|
|
13
|
+
propsDefinition: import("vue-tsx-support").PropsForOutside<{
|
|
14
|
+
webpartid: string;
|
|
15
|
+
displaymode: unknown;
|
|
16
|
+
}, never>;
|
|
17
|
+
}) | (import("vue").VueConstructor<import("vue-tsx-support")._TsxComponentInstanceV3<import("vue/types/umd") & import("vue").ShallowUnwrapRef<() => VueTsxSupport.JSX.Element>, {}, import("vue-tsx-support").PropsForOutside<{
|
|
18
|
+
webpartid: string;
|
|
19
|
+
displaymode: unknown;
|
|
20
|
+
}, never>, any, any, any>> & {
|
|
21
|
+
propsDefinition: import("vue-tsx-support").PropsForOutside<{
|
|
22
|
+
webpartid: string;
|
|
23
|
+
displaymode: unknown;
|
|
24
|
+
}, never>;
|
|
25
|
+
});
|
|
26
|
+
export default _default;
|
|
@@ -1,31 +1,24 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { IOmniaWPContainerSettings } from "./IOmniaWPContainerSettings";
|
|
3
|
-
import { VueComponentBase, BlockCatalogStore } from "../../ux";
|
|
4
|
-
import { BlockRegistration, GuidValue } from "../../models";
|
|
1
|
+
import { GuidValue } from "../../models";
|
|
5
2
|
import "./styles/OmniaWPContainerSettings.css";
|
|
6
|
-
|
|
3
|
+
declare const _default: (import("vue").VueConstructor<import("vue-tsx-support")._TsxComponentInstanceV3<import("vue/types/umd"), {}, import("vue-tsx-support").PropsForOutside<{
|
|
7
4
|
opened: boolean;
|
|
8
5
|
onClosed: () => void;
|
|
9
6
|
onChange: (blockManifestId: GuidValue, elementName: string) => void;
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
private renderDefaultBlocks;
|
|
29
|
-
private renderSearchResult;
|
|
30
|
-
render(): VueTsxSupport.JSX.Element;
|
|
31
|
-
}
|
|
7
|
+
}, never>, any, any, any>> & {
|
|
8
|
+
propsDefinition: import("vue-tsx-support").PropsForOutside<{
|
|
9
|
+
opened: boolean;
|
|
10
|
+
onClosed: () => void;
|
|
11
|
+
onChange: (blockManifestId: GuidValue, elementName: string) => void;
|
|
12
|
+
}, never>;
|
|
13
|
+
}) | (import("vue").VueConstructor<import("vue-tsx-support")._TsxComponentInstanceV3<import("vue/types/umd") & import("vue").ShallowUnwrapRef<() => VueTsxSupport.JSX.Element>, {}, import("vue-tsx-support").PropsForOutside<{
|
|
14
|
+
opened: boolean;
|
|
15
|
+
onClosed: () => void;
|
|
16
|
+
onChange: (blockManifestId: GuidValue, elementName: string) => void;
|
|
17
|
+
}, never>, any, any, any>> & {
|
|
18
|
+
propsDefinition: import("vue-tsx-support").PropsForOutside<{
|
|
19
|
+
opened: boolean;
|
|
20
|
+
onClosed: () => void;
|
|
21
|
+
onChange: (blockManifestId: GuidValue, elementName: string) => void;
|
|
22
|
+
}, never>;
|
|
23
|
+
});
|
|
24
|
+
export default _default;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { OmniaWPContainerSettingsModel } from "../../models";
|
|
2
|
+
import { OmniaWPState } from "../useOmniaWP";
|
|
3
|
+
declare const _default: (import("vue").VueConstructor<import("vue-tsx-support")._TsxComponentInstanceV3<import("vue/types/umd"), {}, import("vue-tsx-support").PropsForOutside<{
|
|
4
|
+
webpartid: string;
|
|
5
|
+
settings: OmniaWPContainerSettingsModel;
|
|
6
|
+
wpState: OmniaWPState;
|
|
7
|
+
}, "settings" | "webpartid" | "wpState">, any, any, any>> & {
|
|
8
|
+
propsDefinition: import("vue-tsx-support").PropsForOutside<{
|
|
9
|
+
webpartid: string;
|
|
10
|
+
settings: OmniaWPContainerSettingsModel;
|
|
11
|
+
wpState: OmniaWPState;
|
|
12
|
+
}, "settings" | "webpartid" | "wpState">;
|
|
13
|
+
}) | (import("vue").VueConstructor<import("vue-tsx-support")._TsxComponentInstanceV3<import("vue/types/umd") & import("vue").ShallowUnwrapRef<() => VueTsxSupport.JSX.Element>, {}, import("vue-tsx-support").PropsForOutside<{
|
|
14
|
+
webpartid: string;
|
|
15
|
+
settings: OmniaWPContainerSettingsModel;
|
|
16
|
+
wpState: OmniaWPState;
|
|
17
|
+
}, "settings" | "webpartid" | "wpState">, any, any, any>> & {
|
|
18
|
+
propsDefinition: import("vue-tsx-support").PropsForOutside<{
|
|
19
|
+
webpartid: string;
|
|
20
|
+
settings: OmniaWPContainerSettingsModel;
|
|
21
|
+
wpState: OmniaWPState;
|
|
22
|
+
}, "settings" | "webpartid" | "wpState">;
|
|
23
|
+
});
|
|
24
|
+
export default _default;
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
import { GuidValue, ILayoutCanvasExpansionItemInstance, WebComponentDefinition } from "@omnia/fx-models";
|
|
2
|
+
import { SpfxWebPartSettingMsg } from "../messagebus/internal/InternalTopics";
|
|
3
|
+
import { OmniaWPContainerSettingsModel } from "../models";
|
|
4
|
+
export interface OmniaWPState {
|
|
5
|
+
webComponents: WebComponentDefinition[];
|
|
6
|
+
displaySelectComponents: boolean;
|
|
7
|
+
displaySettingsComponentForm: boolean;
|
|
8
|
+
selectedComponentTag: string;
|
|
9
|
+
selectedSettingsComponentTag: string;
|
|
10
|
+
componentTitle: string;
|
|
11
|
+
settingsComponentDialog: {
|
|
12
|
+
visible: boolean;
|
|
13
|
+
};
|
|
14
|
+
isEditMode: boolean;
|
|
15
|
+
activeTab: number;
|
|
16
|
+
layoutItems: ILayoutCanvasExpansionItemInstance[];
|
|
17
|
+
customCssClases: string;
|
|
18
|
+
customCssStyle: string;
|
|
19
|
+
}
|
|
20
|
+
export default function useOmniaWP(webpartid: string): {
|
|
21
|
+
state: {
|
|
22
|
+
webComponents: {
|
|
23
|
+
title: string;
|
|
24
|
+
description?: string;
|
|
25
|
+
icon?: {
|
|
26
|
+
iconType: import("@omnia/fx-models").IconTypes;
|
|
27
|
+
role?: string;
|
|
28
|
+
};
|
|
29
|
+
featureDependencyIds?: {
|
|
30
|
+
toString: () => string;
|
|
31
|
+
}[];
|
|
32
|
+
requiresLicense?: {
|
|
33
|
+
toString: () => string;
|
|
34
|
+
}[];
|
|
35
|
+
requiredBackendRuntime?: import("@omnia/fx-models").OmniaBackendRuntimes[];
|
|
36
|
+
requiredClientRuntime?: import("@omnia/fx-models").OmniaClientRuntimes[];
|
|
37
|
+
}[];
|
|
38
|
+
displaySelectComponents: boolean;
|
|
39
|
+
displaySettingsComponentForm: boolean;
|
|
40
|
+
selectedComponentTag: string;
|
|
41
|
+
selectedSettingsComponentTag: string;
|
|
42
|
+
componentTitle: string;
|
|
43
|
+
settingsComponentDialog: {
|
|
44
|
+
visible: boolean;
|
|
45
|
+
};
|
|
46
|
+
isEditMode: boolean;
|
|
47
|
+
activeTab: number;
|
|
48
|
+
layoutItems: {
|
|
49
|
+
slots: {
|
|
50
|
+
header: () => JSX.Element;
|
|
51
|
+
content: () => JSX.Element | JSX.Element[];
|
|
52
|
+
};
|
|
53
|
+
definitionId: {
|
|
54
|
+
toString: () => string;
|
|
55
|
+
};
|
|
56
|
+
}[];
|
|
57
|
+
customCssClases: string;
|
|
58
|
+
customCssStyle: string;
|
|
59
|
+
};
|
|
60
|
+
populateComponentTitle: (componentManifestId: GuidValue, elementTag?: string) => void;
|
|
61
|
+
subscribeSpfxWebPartSettingTopic: (callback: (msg: SpfxWebPartSettingMsg) => void) => void;
|
|
62
|
+
subcribeMessage: (msg: SpfxWebPartSettingMsg, settings: OmniaWPContainerSettingsModel) => void;
|
|
63
|
+
saveComponentSettings: (value: any, settings: OmniaWPContainerSettingsModel) => Promise<void>;
|
|
64
|
+
onDisplayModeChanged: (mode: any) => void;
|
|
65
|
+
updateAdvanceCss: (settings: OmniaWPContainerSettingsModel) => void;
|
|
66
|
+
renderDisplayComponent: (manifestid?: GuidValue) => VueTsxSupport.JSX.Element;
|
|
67
|
+
renderSettingsComponent: (settings: OmniaWPContainerSettingsModel) => VueTsxSupport.JSX.Element;
|
|
68
|
+
init: (settings: OmniaWPContainerSettingsModel) => void;
|
|
69
|
+
};
|
|
@@ -63,6 +63,12 @@ declare const _default: (import("vue").VueConstructor<import("vue-tsx-support").
|
|
|
63
63
|
hideUsername: boolean;
|
|
64
64
|
hideImage: boolean;
|
|
65
65
|
renderSlots: (resolvedIdentity: IResolvedIdentity) => RenderSlotsType;
|
|
66
|
+
avatarStyles: {
|
|
67
|
+
styles?: {
|
|
68
|
+
[key: string]: string;
|
|
69
|
+
};
|
|
70
|
+
class?: string;
|
|
71
|
+
};
|
|
66
72
|
}, "valueBind">, any, any, any>> & {
|
|
67
73
|
propsDefinition: import("vue-tsx-support").PropsForOutside<{
|
|
68
74
|
valueBind: Identity[];
|
|
@@ -100,6 +106,12 @@ declare const _default: (import("vue").VueConstructor<import("vue-tsx-support").
|
|
|
100
106
|
hideUsername: boolean;
|
|
101
107
|
hideImage: boolean;
|
|
102
108
|
renderSlots: (resolvedIdentity: IResolvedIdentity) => RenderSlotsType;
|
|
109
|
+
avatarStyles: {
|
|
110
|
+
styles?: {
|
|
111
|
+
[key: string]: string;
|
|
112
|
+
};
|
|
113
|
+
class?: string;
|
|
114
|
+
};
|
|
103
115
|
}, "valueBind">;
|
|
104
116
|
}) | (import("vue").VueConstructor<import("vue-tsx-support")._TsxComponentInstanceV3<import("vue/types/umd") & import("vue").ShallowUnwrapRef<() => VueTsxSupport.JSX.Element>, {}, import("vue-tsx-support").PropsForOutside<{
|
|
105
117
|
valueBind: Identity[];
|
|
@@ -137,6 +149,12 @@ declare const _default: (import("vue").VueConstructor<import("vue-tsx-support").
|
|
|
137
149
|
hideUsername: boolean;
|
|
138
150
|
hideImage: boolean;
|
|
139
151
|
renderSlots: (resolvedIdentity: IResolvedIdentity) => RenderSlotsType;
|
|
152
|
+
avatarStyles: {
|
|
153
|
+
styles?: {
|
|
154
|
+
[key: string]: string;
|
|
155
|
+
};
|
|
156
|
+
class?: string;
|
|
157
|
+
};
|
|
140
158
|
}, "valueBind">, any, any, any>> & {
|
|
141
159
|
propsDefinition: import("vue-tsx-support").PropsForOutside<{
|
|
142
160
|
valueBind: Identity[];
|
|
@@ -174,6 +192,12 @@ declare const _default: (import("vue").VueConstructor<import("vue-tsx-support").
|
|
|
174
192
|
hideUsername: boolean;
|
|
175
193
|
hideImage: boolean;
|
|
176
194
|
renderSlots: (resolvedIdentity: IResolvedIdentity) => RenderSlotsType;
|
|
195
|
+
avatarStyles: {
|
|
196
|
+
styles?: {
|
|
197
|
+
[key: string]: string;
|
|
198
|
+
};
|
|
199
|
+
class?: string;
|
|
200
|
+
};
|
|
177
201
|
}, "valueBind">;
|
|
178
202
|
});
|
|
179
203
|
export default _default;
|
|
@@ -1,13 +1,17 @@
|
|
|
1
1
|
import { LayoutCanvasStore } from "../../..";
|
|
2
2
|
import { BlockTitleSettingsStore } from "@omnia/fx/stores";
|
|
3
|
-
import { VueComponentBase } from "@omnia/fx/ux";
|
|
3
|
+
import { VueComponentBase, BlockInstance } from "@omnia/fx/ux";
|
|
4
|
+
import { OmniaSpfxSettingsProvider } from "internal/fx/spfx/services/SpfxWPSettingProvider";
|
|
4
5
|
export default class CssItem extends VueComponentBase {
|
|
5
6
|
blockTitleSettingsStore: BlockTitleSettingsStore;
|
|
6
7
|
editorStore: LayoutCanvasStore;
|
|
8
|
+
blockInstance: BlockInstance;
|
|
9
|
+
spfxSettingsService: OmniaSpfxSettingsProvider;
|
|
7
10
|
private omniaUxLoc;
|
|
8
11
|
private item;
|
|
9
12
|
private settings;
|
|
10
13
|
mounted(): void;
|
|
11
14
|
created(): void;
|
|
15
|
+
private updateSpfxSettings;
|
|
12
16
|
render(): VueTsxSupport.JSX.Element;
|
|
13
17
|
}
|
|
@@ -1,10 +1,14 @@
|
|
|
1
|
+
import { BlockInstance } from "../../../..";
|
|
1
2
|
import { LayoutCanvasStore } from "../../..";
|
|
2
3
|
import { VueComponentBase } from "../../../..";
|
|
3
4
|
import { BlockTitleSettingsStore } from "../../../../../stores";
|
|
5
|
+
import { OmniaSpfxSettingsProvider } from "internal/fx/spfx/services/SpfxWPSettingProvider";
|
|
4
6
|
export default class HeaderItem extends VueComponentBase {
|
|
5
7
|
blockTitleSettingsStore: BlockTitleSettingsStore;
|
|
6
8
|
editorStore: LayoutCanvasStore;
|
|
9
|
+
blockInstance: BlockInstance;
|
|
7
10
|
private omniaUxLoc;
|
|
11
|
+
spfxSettingsService: OmniaSpfxSettingsProvider;
|
|
8
12
|
private item;
|
|
9
13
|
private settings;
|
|
10
14
|
private model;
|
|
@@ -12,5 +16,6 @@ export default class HeaderItem extends VueComponentBase {
|
|
|
12
16
|
created(): void;
|
|
13
17
|
private headerValueChanged;
|
|
14
18
|
private onIconValueChanged;
|
|
19
|
+
private updateSpfxSettings;
|
|
15
20
|
render(): VueTsxSupport.JSX.Element;
|
|
16
21
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"omfx-enterpriseproperties-taxonomyfield-value-definition":["availableParents"],"omfx-sp-language-picker":["valueBind","onValueChanged","scopedSlots","styles"],"omfx-targeting-filter":["filter","onFilterChanged","fullWidth"],"omfx-term-picker":["startWithIds","termSetId","preSelectedTermIds","lcid","onTermsSelected","filterOptions","validator","description"],"omfx-termset-picker":["termSetId","onChanged"],"
|
|
1
|
+
{"omfx-enterpriseproperties-taxonomyfield-value-definition":["availableParents"],"omfx-sp-language-picker":["valueBind","onValueChanged","scopedSlots","styles"],"omfx-targeting-filter":["filter","onFilterChanged","fullWidth"],"omfx-term-picker":["startWithIds","termSetId","preSelectedTermIds","lcid","onTermsSelected","filterOptions","validator","description"],"omfx-termset-picker":["termSetId","onChanged"],"omfx-queryable-enterpriseproperties":["serviceId","additionalBuiltInProperties "],"omfx-app-instance-delete-blade":["appInstance","handleClose","handleDeleteCompleted"],"omfx-appinstance-editing-journey":["appInstance","content","onCanceled","onSave","onCompleted"],"omfx-app-instance-permission-blade":["appInstance","handleClose","onAppPermissionsUpdated"],"omfx-app-instance-information-step":["context","registerOnGoToNext","registerOnGoToPrev"],"omfx-app-instance-users-step":["context","registerOnGoToNext","registerOnGoToPrev"],"omfx-app-instance-enterprise-step":["context","registerOnGoToNext","registerOnGoToPrev"],"omfx-app-provisioning-wizard":["initialAppTemplate","initialAppDefinition","initialAppInstance","onInstancePropertiesChanged","onProvisioningStarted","onProvisioningCompleted","styles","templatesToShow"],"omfx-button":["preset","icon","tooltip","size","mode","styles","onClick","onKeyDown","tabindex"],"omfx-color-picker":["display","valueBind","onValueChanged","errorMessages","validator","attachedToParent"],"omfx-confirm-dialog":["dialogOptions","onClose","styles","icon"],"omfx-connected-tenant":["onValueChanged","scopedSlots"],"omfx-context-language-picker":["onValueChanged","scopedSlots"],"omfx-datatable":["items","header","onSort","renderItem","onPaging","scrollElementSelector"],"omfx-date-time-picker":["valueBind","onValueChanged","formatter","description"],"omfx-enterpriseproperties-datetimefield-display":["settings"],"omfx-enterpriseproperty-picker":["preSelectedPropertyInternalName","propertyItems","externalPropertyItems","onChange","requiredWithValidator","excludedPropertyTypeIds"],"omfx-enterprisepropertyset-picker":["preSelectedPropertySetId","propertySetItems","onChange","requiredWithValidator"],"omfx-features-journey":["onInstanceClosed"],"omfx-file-uploader":["onFileChanged","limitedFileTypes"],"omfx-numeric-indicator":["clickCallback","valueBind","label","style"],"omfx-barchart-indicator":["clickCallback","loadData","hasData","chartValues"],"omfx-heading":["styles","onChange"],"omfx-icon":["valueBind","styles","iconAttrs"],"omfx-icon-picker":["valueBind","onValueChanged","errorMessages","validator"],"omfx-iframe":["js","html","css","iframeHeight","iframeCustomStyle"],"omfx-media-imagegrid":["images","onImageSelected","searchStatus"],"omfx-input-language-picker":["multilingualContext"],"omfx-journey":["onInstanceCreated","onInstanceClosed","blades"],"omfx-language-picker":["valueBind","onValueChanged","scopedSlots","styles","loadLanguage"],"omfx-media-picker-image":["image","imageStyle"],"omfx-media-picker-video":["video"],"omfx-multilingual-input":["valueBind","richTextSettings","requiredWithValidator","onValueChanged"],"omfx-organizationtree":["valueBind","onNewUserSelected"],"omfx-reportees":["users","manager","onUserClick"],"omfx-permission-input":["settings","contextParams"],"omfx-persona":["largeImage","linkToProfilecard","highlight","user","onUserClick"],"omfx-post-component":["richTextSettings","cardStyle","showMoreSize","styles","allowLikes","enableMention","customSlots"],"omfx-aboutuser":["user"],"omfx-profilecard":["user","scopedSlots","appendToBody"],"omfx-profilecard-dialog":["user"],"omfx-rich-text-editor":["onContentChange","onContentDataChange","onInstanceCreated"],"omfx-rich-text-editor-renderer":["editorContent","editorContent"],"omfx-rollup-empty":["text","renderingMode"],"omfx-rollup-filter":["valueBind","onFilterChange","useRollupFilterRouter"],"omfx-security-trimer":["content","alternativeContent","roles"],"omfx-settings-pane":["valueBind","onCancel","onSave"],"omfx-comment-component":["topicId","comments","template","dynamicInput","richTextSettings","enableBestReply","canMarkBestReply","sortOrder","allowLikes","cardStyle","showMoreSize","additionalRoles"],"omfx-people-tagging-component":["content","disabled","richTextSettings","enableMention","contentChanged","mentionChanged","resetContetnRte"],"omfx-like-component":["topicId","commendId","commentLikeService","likes","likeListingTemplate","extendComponents"],"omfx-like-listing-template":["likes","socialReactionStylings","currentSocialReaction","close"],"omfx-spacing-picker":["valueBind","onValueChanged"],"omfx-status-message-overlay":["content"],"omfx-template-picker":["valueBind","templates","onValueChanged"],"omfx-text-translator":["onTranslateCompleted"],"omfx-themedefinition-editor":["hideBodySettings","hideChromeSettings","hideBorderSettings","valueBind","onValueChanged","attachedToParent"],"omfx-timezone-picker":["valueBind","onValueChanged","scopedSlots","styles"],"omfx-url-input":["valueBind","requiredWithValidator","onValueChanged","onBlur"],"omfx-field-validation":["useValidator","checkValue","rules","getCheckValue"],"omfx-wizard":["styles","onInstanceCreated","steps"]}
|
|
@@ -10,7 +10,10 @@ import wc4584d438a74748ab9ae5f9f4f431673f from '../../fx-sp/internal-do-not-impo
|
|
|
10
10
|
import wc7332138e1e7845d1a5e62597a27e44a4 from '../../fx-sp/internal-do-not-import-from-here/ux/properties/term-set/TermSetDisplay';
|
|
11
11
|
import wc83dee8a1eea84537ad9544e8b9fc4cb1 from '../../fx-sp/internal-do-not-import-from-here/ux/properties/term-set/TermSetEditor';
|
|
12
12
|
import wca9cc1e1ff5894f4db7005bc49c6c47c5 from '../../fx-sp/internal-do-not-import-from-here/ux/properties/term-set/TermSetConfiguration';
|
|
13
|
+
import wc5057354b14bb430e854a22e21d9ab7af from './spfx/components/OmniaWPContainerSettings';
|
|
14
|
+
import wca7105d996040472b8d55819f99a434db from './spfx/components/OmniaWPContainer';
|
|
13
15
|
import wc4d6cad2f0eb948e1aaefae35edab238c from './spfx/components/OmniaWPStandaloneContainer';
|
|
16
|
+
import wcd291917a0dd44ad0a96370e8f53be808 from './spfx/components/renderer/Settings';
|
|
14
17
|
import wc3a5a2bb94382402ba9927797758c1269 from './ux/analytics/metric/Metric';
|
|
15
18
|
import wc4d83f393bd894ea0b1c3eb4ebce3ad19 from './ux/analyticssettings/AnalyticsSettings';
|
|
16
19
|
import wca8f8d41d8ceb43e0b16398c209fd6b32 from './ux/app/appinstance/renderer/AppInstanceRollup';
|
|
@@ -187,7 +190,10 @@ declare global {
|
|
|
187
190
|
"omfx-properties-term-set-display": base.CombinedTsxComponentAttrs<typeof wc7332138e1e7845d1a5e62597a27e44a4.propsDefinition, {}, {}, {}, {}, true> & VueComponentBaseProps;
|
|
188
191
|
"omfx-properties-term-set-editor": base.CombinedTsxComponentAttrs<typeof wc83dee8a1eea84537ad9544e8b9fc4cb1.propsDefinition, {}, {}, {}, {}, true> & VueComponentBaseProps;
|
|
189
192
|
"omfx-properties-term-set-configuration": base.CombinedTsxComponentAttrs<typeof wca9cc1e1ff5894f4db7005bc49c6c47c5.propsDefinition, {}, {}, {}, {}, true> & VueComponentBaseProps;
|
|
193
|
+
"omnia-fx-spfx-wp-settings": base.CombinedTsxComponentAttrs<typeof wc5057354b14bb430e854a22e21d9ab7af.propsDefinition, {}, {}, {}, {}, true> & VueComponentBaseProps;
|
|
194
|
+
"omnia-fx-spfx-wp": base.CombinedTsxComponentAttrs<typeof wca7105d996040472b8d55819f99a434db.propsDefinition, {}, {}, {}, {}, true> & VueComponentBaseProps;
|
|
190
195
|
"omnia-fx-spfx-wp-standalone": base.CombinedTsxComponentAttrs<typeof wc4d6cad2f0eb948e1aaefae35edab238c.propsDefinition, {}, {}, {}, {}, true> & VueComponentBaseProps;
|
|
196
|
+
"omnia-fx-spfx-wp-settings-renderer": base.CombinedTsxComponentAttrs<typeof wcd291917a0dd44ad0a96370e8f53be808.propsDefinition, {}, {}, {}, {}, true> & VueComponentBaseProps;
|
|
191
197
|
"omfx-metric-renderer": base.CombinedTsxComponentAttrs<typeof wc3a5a2bb94382402ba9927797758c1269.propsDefinition, {}, {}, {}, {}, true> & VueComponentBaseProps;
|
|
192
198
|
"omfx-analytics-settings": base.CombinedTsxComponentAttrs<typeof wc4d83f393bd894ea0b1c3eb4ebce3ad19.propsDefinition, {}, {}, {}, {}, true> & VueComponentBaseProps;
|
|
193
199
|
"omfx-app-instance-rollup": base.CombinedTsxComponentAttrs<typeof wca8f8d41d8ceb43e0b16398c209fd6b32.propsDefinition, {}, {}, {}, {}, true> & VueComponentBaseProps;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@omnia/fx",
|
|
3
3
|
"license": "MIT",
|
|
4
|
-
"version": "7.8.
|
|
4
|
+
"version": "7.8.100-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": "Omnia Digital Workplace AB",
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@omnia/fx-models": "7.8.
|
|
23
|
+
"@omnia/fx-models": "7.8.100-preview",
|
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
|
25
25
|
"broadcast-channel": "4.8.0",
|
|
26
26
|
"dayjs": "1.10.7",
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { GuidValue } from "../../models";
|
|
2
|
-
export interface IOmniaWPContainerSettings {
|
|
3
|
-
[name: string]: any;
|
|
4
|
-
onClosed?: () => void;
|
|
5
|
-
onChange?: (blockManifestId: GuidValue, elementName: string) => void;
|
|
6
|
-
}
|
|
7
|
-
declare global {
|
|
8
|
-
namespace VueTsxSupport.JSX {
|
|
9
|
-
interface Element {
|
|
10
|
-
}
|
|
11
|
-
interface ElementClass {
|
|
12
|
-
}
|
|
13
|
-
interface IntrinsicElements {
|
|
14
|
-
"omnia-fx-spfx-wp-settings": IOmniaWPContainerSettings;
|
|
15
|
-
}
|
|
16
|
-
}
|
|
17
|
-
}
|