@omnia/fx 7.11.0-preview.8 → 7.11.1
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/LICENSE.txt +14 -0
- package/internal-do-not-import-from-here/contexts/InternalAppContext.d.ts +4 -4
- package/internal-do-not-import-from-here/core/Cookies.d.ts +1 -0
- package/internal-do-not-import-from-here/core/console/ConsoleKeyboardShortcuts.d.ts +1 -0
- package/internal-do-not-import-from-here/core/messaging/BuiltInTopics.d.ts +1 -0
- package/internal-do-not-import-from-here/core/utils/AlternateLayoutTitleUtils.d.ts +6 -0
- package/internal-do-not-import-from-here/core/utils/index.d.ts +1 -0
- package/internal-do-not-import-from-here/index.d.ts +1 -0
- package/internal-do-not-import-from-here/manifests/omnia.fx.core.manifest.json +1 -1
- package/internal-do-not-import-from-here/manifests/omnia.fx.manifest.json +1 -1
- package/internal-do-not-import-from-here/manifests/omnia.fx.ux.manifest.json +1 -1
- package/internal-do-not-import-from-here/manifests/omnia.fx.ux.richtexteditor.manifest.json +1 -1
- package/internal-do-not-import-from-here/manifests/omnia.fx.worker.manifest.json +1 -1
- package/internal-do-not-import-from-here/manifests/omnia.vendor.manifest.json +1 -1
- package/internal-do-not-import-from-here/runtime/clientboot/Boot.d.ts +1 -0
- package/internal-do-not-import-from-here/services/AzureOpenAIService.d.ts +2 -1
- package/internal-do-not-import-from-here/services/BusinessProfileService.d.ts +1 -0
- package/internal-do-not-import-from-here/services/permissions/PermissionService.d.ts +1 -0
- package/internal-do-not-import-from-here/spfx/components/SpfxCustomizeStyle.d.ts +5 -0
- package/internal-do-not-import-from-here/stores/BusinessProfileStore.d.ts +1 -0
- package/internal-do-not-import-from-here/stores/EnterprisePropertyStore.d.ts +0 -1
- package/internal-do-not-import-from-here/stores/ProfileCardStore.d.ts +9 -5
- package/internal-do-not-import-from-here/ux/AnchorLink.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/ComponentDefinitions.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/TokenBasedRouter.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/UxModels.d.ts +26 -0
- package/internal-do-not-import-from-here/ux/appprovisioning/apptitledescription/AppDescriptionInput.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/appprovisioning/apptitledescription/IAppDescriptionInput.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/confirmdialog/ConfirmDialog.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/confirmdialog/IConfirmDialog.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/draggable/Draggable.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/features/FeatureActivation.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/features/loc/localize.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/filterengine/FilterEngineSettings.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/LayoutEditorCanvas.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitemactiontoolbar/LayoutItemActionToolbar.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitems/LayoutColumn.d.ts +7 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitems/LayoutSection.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/BlockSettingsPanel.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/LayoutStructure.d.ts +4 -2
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/blocktitle/BlockTitle.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/blocktitle/IBlockTitle.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/breakpoints/BreakPointSectionSettingsComponent.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/breakpoints/BreakPointSettingsComponent.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/section/General.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/tabs/TabBlockSettings.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/factories/EditorLayoutItemFactory.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/renderer/LayoutRendererCanvas.d.ts +3 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/rules/LayoutItemRules.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/BlockSettingsProvider.d.ts +4 -4
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/BreakPointManager.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/LayoutItemDelegator.d.ts +16 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/LayoutManager.d.ts +3 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutdefinitionsettings/LayoutItemSettingsDefinitions.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsrenderer/LayoutBlockRenderer.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsrenderer/LayoutColumnRenderer.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsrenderer/LayoutSectionRenderer.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/styles/LayoutSectionContainerHelper.d.ts +10 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/styles/SharedRendererStyles.css.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/stores/LayoutCanvasStore.d.ts +35 -17
- package/internal-do-not-import-from-here/ux/mediapickerproviders/Youtube/YouTubeProvider.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/gptimageprovider/GptImageProvider.css.d.ts +41 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/gptimageprovider/GptImageProvider.d.ts +53 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/gptimageprovider/PollingImageComponent.d.ts +47 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/gptimageprovider/loc/localize.d.ts +23 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaflow/models/MediaflowMedia.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/print/api/PrintHandlerApi.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/profilecard/ProfileCard.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/richtexteditor/RichTextEditorSettings.d.ts +11 -1
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/Alignment/AlignmentNode.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/MediaPicker/MediaPickerEditorExtension.d.ts +7 -2
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/loc/localize.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/settings/ISettingsPane.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/settings/SettingsPane.css.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/settings/SettingsPane.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/signin/omnia/Renderer.d.ts +4 -4
- package/internal-do-not-import-from-here/ux/social/templates/CommentLikeTemplate.d.ts +2 -0
- package/internal-do-not-import-from-here/wcdefinitions.json +1 -1
- package/internal-do-not-import-from-here/wctypings.d.ts +177 -175
- package/package.json +4 -4
- package/internal-do-not-import-from-here/microsoftteams/MicrosoftTeams.d.ts +0 -5
- package/internal-do-not-import-from-here/shared/models/Bring.d.ts +0 -23
- package/internal-do-not-import-from-here/shared/models/Bring.js +0 -2
- package/internal-do-not-import-from-here/shared/models/Broadcasting.d.ts +0 -25
- package/internal-do-not-import-from-here/shared/models/Broadcasting.js +0 -12
- package/internal-do-not-import-from-here/shared/models/Future.d.ts +0 -52
- package/internal-do-not-import-from-here/shared/models/Future.js +0 -158
- package/internal-do-not-import-from-here/shared/models/Guid.d.ts +0 -17
- package/internal-do-not-import-from-here/shared/models/Guid.js +0 -51
- package/internal-do-not-import-from-here/shared/models/OmniaSharedBootstrapData.d.ts +0 -32
- package/internal-do-not-import-from-here/shared/models/OmniaSharedBootstrapData.js +0 -2
- package/internal-do-not-import-from-here/shared/models/Realtime.d.ts +0 -40
- package/internal-do-not-import-from-here/shared/models/Realtime.js +0 -40
- package/internal-do-not-import-from-here/shared/models/SharedConstants.d.ts +0 -6
- package/internal-do-not-import-from-here/shared/models/SharedConstants.js +0 -10
- package/internal-do-not-import-from-here/shared/models/StringExtensions.d.ts +0 -6
- package/internal-do-not-import-from-here/shared/models/StringExtensions.js +0 -3
- package/internal-do-not-import-from-here/shared/models/Tenant.d.ts +0 -4
- package/internal-do-not-import-from-here/shared/models/Tenant.js +0 -2
- package/internal-do-not-import-from-here/shared/models/Tokens.d.ts +0 -14
- package/internal-do-not-import-from-here/shared/models/Tokens.js +0 -2
- package/internal-do-not-import-from-here/shared/models/Topic.d.ts +0 -10
- package/internal-do-not-import-from-here/shared/models/Topic.js +0 -2
- package/internal-do-not-import-from-here/shared/models/WorkerProxyFuncs.d.ts +0 -8
- package/internal-do-not-import-from-here/shared/models/WorkerProxyFuncs.js +0 -14
- package/internal-do-not-import-from-here/shared/models/Workers.d.ts +0 -29
- package/internal-do-not-import-from-here/shared/models/Workers.js +0 -8
- package/internal-do-not-import-from-here/shared/models/index.d.ts +0 -14
- package/internal-do-not-import-from-here/shared/models/index.js +0 -18
- package/internal-do-not-import-from-here/shared/models/theming/BlueprintDefinition.d.ts +0 -27
- package/internal-do-not-import-from-here/shared/models/theming/BlueprintDefinition.js +0 -2
- package/internal-do-not-import-from-here/shared/models/theming/OmniaThemes.d.ts +0 -5
- package/internal-do-not-import-from-here/shared/models/theming/OmniaThemes.js +0 -18
- package/internal-do-not-import-from-here/shared/models/theming/ThemeDefinitionV2.d.ts +0 -61
- package/internal-do-not-import-from-here/shared/models/theming/ThemeDefinitionV2.js +0 -24
- package/internal-do-not-import-from-here/shared/models/theming/ThemeMethods.d.ts +0 -11
- package/internal-do-not-import-from-here/shared/models/theming/ThemeMethods.js +0 -143
- package/internal-do-not-import-from-here/shared/models/theming/TypographyDefinition.d.ts +0 -29
- package/internal-do-not-import-from-here/shared/models/theming/TypographyDefinition.js +0 -11
- package/internal-do-not-import-from-here/shared/models/theming/index.d.ts +0 -4
- package/internal-do-not-import-from-here/shared/models/theming/index.js +0 -7
- package/internal-do-not-import-from-here/ux/shim-tsx.d.ts +0 -14
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { TextPromptRequest, TextPromptResult } from "../models/azure-openai";
|
|
1
|
+
import { TextPromptRequest, TextPromptResult, TextToImagesRequest, TextToImagesResponse } from "../models/azure-openai";
|
|
2
2
|
import { GeneratedImage, TextToImageRequest, ImageDataResult, TextToImageResponse, ErrorResponse } from "@omnia/fx-models";
|
|
3
3
|
export declare class AzureOpenAIService {
|
|
4
4
|
private httpClient;
|
|
@@ -9,6 +9,7 @@ export declare class AzureOpenAIService {
|
|
|
9
9
|
constructor();
|
|
10
10
|
private get numOfTokensToSummarize();
|
|
11
11
|
generateImage: (request: TextToImageRequest) => Promise<TextToImageResponse | ErrorResponse>;
|
|
12
|
+
generateImages: (request: TextToImagesRequest) => Promise<TextToImagesResponse | ErrorResponse>;
|
|
12
13
|
executeTextPrompt(request: TextPromptRequest): Promise<TextPromptResult>;
|
|
13
14
|
executeLimitTextPrompt(summarizedText: string, isUseCustomPrompt?: boolean): Promise<TextPromptResult>;
|
|
14
15
|
private getSummaryPrompt;
|
|
@@ -22,4 +22,5 @@ export declare class BusinessProfileService {
|
|
|
22
22
|
getPropertiesInAllProfilePropertyBags: <Model extends BusinessProfileProperty>(model: new () => Model) => Promise<{
|
|
23
23
|
[profileId: string]: Model;
|
|
24
24
|
}>;
|
|
25
|
+
validateDeleteProfile: (profileId: string) => Promise<boolean>;
|
|
25
26
|
}
|
|
@@ -34,6 +34,7 @@ export declare class PermissionService {
|
|
|
34
34
|
[key: string]: string | number;
|
|
35
35
|
}, serviceId?: GuidValue): Promise<void>;
|
|
36
36
|
clearCache(): void;
|
|
37
|
+
clearPermissionCache(appInstanceId: string): void;
|
|
37
38
|
private getMergedContextParams;
|
|
38
39
|
private getContextHash;
|
|
39
40
|
private ensurePermissionsForContext;
|
|
@@ -31,6 +31,7 @@ export declare class BusinessProfileStore extends Store {
|
|
|
31
31
|
ensureAllProfiles: import("./Store").StoreAction<unknown, (forceRefresh?: boolean) => void, (result: void, forceRefresh?: boolean) => void, (failureReason: any, forceRefresh?: boolean) => void, (forceRefresh?: boolean) => Promise<void>>;
|
|
32
32
|
ensureProfile: import("./Store").StoreAction<unknown, (profileId: string, forceRefresh?: boolean) => void, (result: void, profileId: string, forceRefresh?: boolean) => void, (failureReason: any, profileId: string, forceRefresh?: boolean) => void, (profileId: string, forceRefresh?: boolean) => Promise<void>>;
|
|
33
33
|
ensureProfileWithProperties: import("./Store").StoreAction<unknown, (profileId: string, forceRefresh?: boolean) => void, (result: void, profileId: string, forceRefresh?: boolean) => void, (failureReason: any, profileId: string, forceRefresh?: boolean) => void, (profileId: string, forceRefresh?: boolean) => Promise<void>>;
|
|
34
|
+
validateDeleteProfile: import("./Store").StoreAction<unknown, (profileId: string) => void, (result: boolean, profileId: string) => void, (failureReason: any, profileId: string) => void, (profileId: string) => Promise<boolean>>;
|
|
34
35
|
};
|
|
35
36
|
private publishBusinessProfileUpdateIfNeeded;
|
|
36
37
|
}
|
|
@@ -16,7 +16,6 @@ export declare class EnterprisePropertyStore extends Store {
|
|
|
16
16
|
computedPropertyMapping: import("./Store").StoreState<{
|
|
17
17
|
[serviceIdWithTableKey: string]: EnterprisePropertyColumnMapping[];
|
|
18
18
|
}>;
|
|
19
|
-
enterprisePropertyDefinitionsDeleted: import("./Store").StoreState<EnterprisePropertyDefinition[]>;
|
|
20
19
|
getters: {
|
|
21
20
|
enterprisePropertyDefinitionsByIndexedTypes: (indexTypes: Array<PropertyIndexedType>) => EnterprisePropertyDefinition[];
|
|
22
21
|
enterprisePropertyDefinitions: () => EnterprisePropertyDefinition[];
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { OrgTreeUser, UserInformation, TenantPeopleInformation, UserIdentity, ResolvedUserIdentity } from "../models";
|
|
1
|
+
import { OrgTreeUser, UserInformation, TenantPeopleInformation, UserIdentity, ResolvedUserIdentity, IMessageBusSubscriptionHandler } from "../models";
|
|
2
2
|
import { Store } from "./Store";
|
|
3
3
|
import { ProfileCardService } from "../services/ProfileCardService";
|
|
4
4
|
import { LocalizationService } from "../services/LocalizationService";
|
|
@@ -8,6 +8,7 @@ export declare class ProfileCardStore extends Store {
|
|
|
8
8
|
private omniaContext;
|
|
9
9
|
localizationService: LocalizationService;
|
|
10
10
|
userIdentityStore: UserIdentityStore;
|
|
11
|
+
private tenantPropertyBagSubscription;
|
|
11
12
|
user: import("./Store").StoreState<{
|
|
12
13
|
[uid: string]: OrgTreeUser;
|
|
13
14
|
}>;
|
|
@@ -28,19 +29,22 @@ export declare class ProfileCardStore extends Store {
|
|
|
28
29
|
getResolvedUserInProfile: () => ResolvedUserIdentity;
|
|
29
30
|
};
|
|
30
31
|
mutations: {
|
|
31
|
-
setEnablePeopleInformation: import("./Store").StoreMutation<(value: boolean) => void, (value: boolean) =>
|
|
32
|
-
setProfieCardDialogTabs: import("./Store").StoreMutation<(tabs: string[]) => void, (tabs: string[]) =>
|
|
33
|
-
setTenantPeopleInformation: import("./Store").StoreMutation<(value: TenantPeopleInformation) => void, (value: TenantPeopleInformation) =>
|
|
34
|
-
setUserInProfile: import("./Store").StoreMutation<(user: UserIdentity) => void, (user: UserIdentity) =>
|
|
32
|
+
setEnablePeopleInformation: import("./Store").StoreMutation<(value: boolean) => void, (value: boolean) => IMessageBusSubscriptionHandler>;
|
|
33
|
+
setProfieCardDialogTabs: import("./Store").StoreMutation<(tabs: string[]) => void, (tabs: string[]) => IMessageBusSubscriptionHandler>;
|
|
34
|
+
setTenantPeopleInformation: import("./Store").StoreMutation<(value: TenantPeopleInformation) => void, (value: TenantPeopleInformation) => IMessageBusSubscriptionHandler>;
|
|
35
|
+
setUserInProfile: import("./Store").StoreMutation<(user: UserIdentity) => void, (user: UserIdentity) => IMessageBusSubscriptionHandler>;
|
|
35
36
|
};
|
|
36
37
|
actions: {
|
|
37
38
|
loadUser: import("./Store").StoreAction<unknown, (user: UserIdentity) => void, (result: OrgTreeUser, user: UserIdentity) => void, (failureReason: any, user: UserIdentity) => void, (user: UserIdentity) => Promise<OrgTreeUser>>;
|
|
38
39
|
loadUserProperties: import("./Store").StoreAction<unknown, (user: UserIdentity, refresh?: boolean) => void, (result: UserInformation, user: UserIdentity, refresh?: boolean) => void, (failureReason: any, user: UserIdentity, refresh?: boolean) => void, (user: UserIdentity, refresh?: boolean) => Promise<UserInformation>>;
|
|
39
40
|
loadUserInProfile: import("./Store").StoreAction<unknown, () => void, (result: ResolvedUserIdentity) => void, (failureReason: any) => void, () => Promise<ResolvedUserIdentity>>;
|
|
40
41
|
};
|
|
42
|
+
private contextChangedSubscription;
|
|
41
43
|
onActivated(): void;
|
|
42
44
|
onDisposing(): void;
|
|
43
45
|
private getUid;
|
|
44
46
|
private initEnablePeopleInformation;
|
|
45
47
|
private initTenantPeopleInformation;
|
|
48
|
+
private registerTenantPeopleInformationSubscription;
|
|
49
|
+
private refreshTenantPeopleInformation;
|
|
46
50
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { AnchorLinkRoute, TokenBasedRouteStateData, IMessageBusSubscriptionHandler } from "../models";
|
|
2
|
+
import { StateData } from "../ux/InternalRouter";
|
|
2
3
|
import { TokenBasedRouter } from "./TokenBasedRouter";
|
|
3
4
|
import { VueComponentBase } from "./VueComponentBase";
|
|
4
5
|
interface AnchorLinkConfiguration {
|
|
@@ -21,6 +22,7 @@ declare class InternalAnchorLinkRouter extends TokenBasedRouter<AnchorLinkRoute,
|
|
|
21
22
|
subscribe: (config: AnchorLinkConfiguration) => IMessageBusSubscriptionHandler;
|
|
22
23
|
silentNavigate: (anchorName: string) => void;
|
|
23
24
|
clearRoute: () => void;
|
|
25
|
+
getTokenValue: (stateData: StateData) => TokenBasedRouteStateData;
|
|
24
26
|
private useConfiguration;
|
|
25
27
|
private scrollToElement;
|
|
26
28
|
private onMutationObserved;
|
|
@@ -37,6 +39,7 @@ export declare class AnchorLink {
|
|
|
37
39
|
clear(): void;
|
|
38
40
|
subscribe(config: AnchorLinkConfiguration): IMessageBusSubscriptionHandler;
|
|
39
41
|
silentNavigate(anchorName: string): void;
|
|
42
|
+
getTokenValue(stateData: StateData): TokenBasedRouteStateData;
|
|
40
43
|
static combine(path: string, anchorName: string): string | null;
|
|
41
44
|
static split(path: string): string[];
|
|
42
45
|
static transformToDefaultFormat(value: string): string;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { StateData } from "./InternalRouter";
|
|
1
2
|
import { ITokenBasedRouteContext, TokenBasedRouteStateData, IMessageBusTopicSubscription, TokenBasedRoute } from "../models";
|
|
2
3
|
export declare abstract class TokenBasedRouter<T1 extends TokenBasedRoute, T2 extends TokenBasedRouteStateData> {
|
|
3
4
|
private static initialized;
|
|
@@ -19,6 +20,7 @@ export declare abstract class TokenBasedRouter<T1 extends TokenBasedRoute, T2 ex
|
|
|
19
20
|
get onNavigate(): IMessageBusTopicSubscription<ITokenBasedRouteContext<T1, T2>>;
|
|
20
21
|
get routeContext(): ITokenBasedRouteContext<T1, T2>;
|
|
21
22
|
get tokenExistsOnUrl(): boolean;
|
|
23
|
+
protected protectedGetTokenValue(stateData?: StateData): TokenBasedRouteStateData;
|
|
22
24
|
protected protectedNavigate(title: string, route: T1, stateData?: T2, replaceState?: boolean): void;
|
|
23
25
|
protected protectedClearRoute(): void;
|
|
24
26
|
protected combinePathParts(...parts: string[]): string;
|
|
@@ -321,6 +321,7 @@ export interface OmniaUxLocalization {
|
|
|
321
321
|
Rejected: string;
|
|
322
322
|
};
|
|
323
323
|
};
|
|
324
|
+
InvalidMagicLinkMessage: string;
|
|
324
325
|
Rollup: {
|
|
325
326
|
Settings: {
|
|
326
327
|
Scope: string;
|
|
@@ -690,6 +691,11 @@ export interface OmniaUxLocalization {
|
|
|
690
691
|
Description: string;
|
|
691
692
|
Title: string;
|
|
692
693
|
};
|
|
694
|
+
ExperimentalOmniaSearch: {
|
|
695
|
+
Category: string;
|
|
696
|
+
Description: string;
|
|
697
|
+
Title: string;
|
|
698
|
+
};
|
|
693
699
|
New7ReusableContent: {
|
|
694
700
|
Category: string;
|
|
695
701
|
Description: string;
|
|
@@ -730,12 +736,29 @@ export interface OmniaUxLocalization {
|
|
|
730
736
|
Title: string;
|
|
731
737
|
ConsentInformation: string;
|
|
732
738
|
};
|
|
739
|
+
New7Patch11M365UserReadAllDelegated: {
|
|
740
|
+
Category: string;
|
|
741
|
+
Description: string;
|
|
742
|
+
Title: string;
|
|
743
|
+
ConsentInformation: string;
|
|
744
|
+
};
|
|
733
745
|
ExtraIDAdditionalUserProperties: {
|
|
734
746
|
Category: string;
|
|
735
747
|
Description: string;
|
|
736
748
|
Title: string;
|
|
737
749
|
ConsentInformation: string;
|
|
738
750
|
};
|
|
751
|
+
ManagedMetadataProperties: {
|
|
752
|
+
Category: string;
|
|
753
|
+
Description: string;
|
|
754
|
+
Title: string;
|
|
755
|
+
ConsentInformation: string;
|
|
756
|
+
};
|
|
757
|
+
OmniaUserAuthentication: {
|
|
758
|
+
Category: string;
|
|
759
|
+
Description: string;
|
|
760
|
+
Title: string;
|
|
761
|
+
};
|
|
739
762
|
};
|
|
740
763
|
AuditLog: {
|
|
741
764
|
Title: string;
|
|
@@ -1164,6 +1187,7 @@ export interface OmniaUxLocalization {
|
|
|
1164
1187
|
TabColor: string;
|
|
1165
1188
|
SelectedTabColor: string;
|
|
1166
1189
|
TextColorTabs: string;
|
|
1190
|
+
Reusable: string;
|
|
1167
1191
|
};
|
|
1168
1192
|
AccordionSettings: {
|
|
1169
1193
|
AddPanel: string;
|
|
@@ -1276,6 +1300,7 @@ export interface OmniaUxLocalization {
|
|
|
1276
1300
|
Medium: string;
|
|
1277
1301
|
Large: string;
|
|
1278
1302
|
Email: string;
|
|
1303
|
+
Print: string;
|
|
1279
1304
|
};
|
|
1280
1305
|
Dialogs: {
|
|
1281
1306
|
DisplayBreakPoints: {
|
|
@@ -1317,6 +1342,7 @@ export interface OmniaUxLocalization {
|
|
|
1317
1342
|
ClientRuntimesDependencyNotValid: string;
|
|
1318
1343
|
BackendRuntimesDependencyNotValid: string;
|
|
1319
1344
|
BlockRegistrationNotFound: string;
|
|
1345
|
+
ReusingContentSection: string;
|
|
1320
1346
|
};
|
|
1321
1347
|
};
|
|
1322
1348
|
QueryableProperties: {
|
|
@@ -3,6 +3,7 @@ import { VueComponentBase } from "../../VueComponentBase";
|
|
|
3
3
|
import { IAppDescriptionInput } from "./IAppDescriptionInput";
|
|
4
4
|
export declare class AppDescriptionInput extends VueComponentBase implements IAppDescriptionInput, IWebComponentInstance {
|
|
5
5
|
description: string;
|
|
6
|
+
maximumLength: number;
|
|
6
7
|
dark: boolean;
|
|
7
8
|
onDescriptionChanged: (title: string) => void;
|
|
8
9
|
private omniaUxLoc;
|
|
@@ -17,5 +18,6 @@ export declare class AppDescriptionInput extends VueComponentBase implements IAp
|
|
|
17
18
|
created(): void;
|
|
18
19
|
mounted(): void;
|
|
19
20
|
checkDescription(): void;
|
|
21
|
+
private getValidationRules;
|
|
20
22
|
render(): VueTsxSupport.JSX.Element;
|
|
21
23
|
}
|
|
@@ -2,6 +2,7 @@ import { TsxAllowUnknowProperties } from "../../TsxAllowUnknowProperties";
|
|
|
2
2
|
import { IValidator } from "../../validation";
|
|
3
3
|
export interface IAppDescriptionInput {
|
|
4
4
|
description: string;
|
|
5
|
+
maximumLength?: number;
|
|
5
6
|
onDescriptionChanged: (value: string) => void;
|
|
6
7
|
useValidator: IValidator;
|
|
7
8
|
}
|
|
@@ -17,11 +17,13 @@ export declare class ConfirmDialogComponent extends VueComponentBase implements
|
|
|
17
17
|
buttonSize?: ButtonSizes;
|
|
18
18
|
buttonNonFlatMode?: ButtonModes;
|
|
19
19
|
loading?: boolean;
|
|
20
|
+
getConfirmDialogOptions?: () => Promise<ConfirmDialogOptions>;
|
|
20
21
|
private omniaUxLoc;
|
|
21
22
|
private disable;
|
|
22
23
|
private confirmDialogClasses;
|
|
23
24
|
created(): void;
|
|
24
25
|
mounted(): void;
|
|
26
|
+
openConfirmDialog(dialogOptions?: ConfirmDialogOptions): void;
|
|
25
27
|
onClick(): void;
|
|
26
28
|
render(): VueTsxSupport.JSX.Element;
|
|
27
29
|
}
|
|
@@ -17,6 +17,7 @@ export interface IConfirmDialog extends IConfirmDialogAttributes {
|
|
|
17
17
|
styles?: typeof ConfirmDialogStyles;
|
|
18
18
|
icon?: string;
|
|
19
19
|
tooltip?: ButtonTooltipOptions;
|
|
20
|
+
getConfirmDialogOptions?: () => Promise<ConfirmDialogOptions>;
|
|
20
21
|
}
|
|
21
22
|
declare global {
|
|
22
23
|
namespace VueTsxSupport.JSX {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* If we import vuedraggable directly from node-modules, error will occur on SharePoint modern page, because the library try to use AMD instead of Modules.
|
|
3
3
|
* The error: unexpected anonymous amd define.
|
|
4
|
-
* Therefore, we modified vuedraggable (and its dependency Sortable), then put it in
|
|
4
|
+
* Therefore, we modified vuedraggable (and its dependency Sortable), then put it in assets/scripts/vuedraggable.js
|
|
5
5
|
* */
|
|
6
6
|
export {};
|
|
@@ -3,21 +3,25 @@ declare const _default: (import("vue").VueConstructor<import("vue-tsx-support").
|
|
|
3
3
|
settings: FilterEngineSettings;
|
|
4
4
|
updateSettings: () => void;
|
|
5
5
|
context: FilterEngineContext;
|
|
6
|
+
disabledShowSearchBox: boolean;
|
|
6
7
|
}, "settings" | "context" | "updateSettings">, any, any, any>> & {
|
|
7
8
|
propsDefinition: import("vue-tsx-support").PropsForOutside<{
|
|
8
9
|
settings: FilterEngineSettings;
|
|
9
10
|
updateSettings: () => void;
|
|
10
11
|
context: FilterEngineContext;
|
|
12
|
+
disabledShowSearchBox: boolean;
|
|
11
13
|
}, "settings" | "context" | "updateSettings">;
|
|
12
14
|
}) | (import("vue").VueConstructor<import("vue-tsx-support")._TsxComponentInstanceV3<import("vue/types/umd") & import("vue").ShallowUnwrapRef<() => VueTsxSupport.JSX.Element>, {}, import("vue-tsx-support").PropsForOutside<{
|
|
13
15
|
settings: FilterEngineSettings;
|
|
14
16
|
updateSettings: () => void;
|
|
15
17
|
context: FilterEngineContext;
|
|
18
|
+
disabledShowSearchBox: boolean;
|
|
16
19
|
}, "settings" | "context" | "updateSettings">, any, any, any>> & {
|
|
17
20
|
propsDefinition: import("vue-tsx-support").PropsForOutside<{
|
|
18
21
|
settings: FilterEngineSettings;
|
|
19
22
|
updateSettings: () => void;
|
|
20
23
|
context: FilterEngineContext;
|
|
24
|
+
disabledShowSearchBox: boolean;
|
|
21
25
|
}, "settings" | "context" | "updateSettings">;
|
|
22
26
|
});
|
|
23
27
|
export default _default;
|
|
@@ -36,6 +36,9 @@ export default class LayoutEditorCanvas extends VueComponentBase implements IWeb
|
|
|
36
36
|
private originalWindowWidth;
|
|
37
37
|
private timeWatchId;
|
|
38
38
|
private enableVerticalAlign;
|
|
39
|
+
private layoutItemDelegator;
|
|
40
|
+
private delegatedSections;
|
|
41
|
+
private layoutItemDelegatorSubHandler;
|
|
39
42
|
beforeCreate(): void;
|
|
40
43
|
created(): void;
|
|
41
44
|
destroyed(): void;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { SubscriptionHandler } from "@omnia/fx";
|
|
1
2
|
import { ClipboardStore } from "@omnia/fx/stores";
|
|
2
3
|
import { VueComponentBase, VueComponentBaseProps } from "@omnia/fx/ux";
|
|
3
4
|
import { LayoutCanvasStore } from "../..";
|
|
@@ -13,6 +14,7 @@ export interface ActionToolbarEvents {
|
|
|
13
14
|
export declare class LayoutItemActionToolbar extends VueComponentBase<ActionToolbarProps, ActionToolbarEvents> {
|
|
14
15
|
layoutEditorStore: LayoutCanvasStore;
|
|
15
16
|
clipboardStore: ClipboardStore;
|
|
17
|
+
subscriptionHandler: SubscriptionHandler;
|
|
16
18
|
private omniaUxLoc;
|
|
17
19
|
item: LayoutItem;
|
|
18
20
|
parentContainer: LayoutItem;
|
|
@@ -21,8 +23,11 @@ export declare class LayoutItemActionToolbar extends VueComponentBase<ActionTool
|
|
|
21
23
|
useTheme?: boolean;
|
|
22
24
|
private editorTheme;
|
|
23
25
|
private model;
|
|
26
|
+
private inheritedOverride;
|
|
24
27
|
created(): void;
|
|
25
28
|
mounted(): void;
|
|
29
|
+
beforeDestroy(): void;
|
|
30
|
+
private updateInheritedOverride;
|
|
26
31
|
/**
|
|
27
32
|
* Eventhandler for deleting the item
|
|
28
33
|
* */
|
package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitems/LayoutColumn.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { LayoutCanvasStore } from "../../";
|
|
2
2
|
import { SectionSettings, SectionItem, ColumnedSectionItemSettings } from "../../../../models";
|
|
3
3
|
import { VueComponentBase } from "../../..";
|
|
4
|
+
import { SubscriptionHandler } from "../../../..";
|
|
4
5
|
import { MediaPickerService } from "../../../../services";
|
|
5
6
|
export interface ColumnProps {
|
|
6
7
|
column: SectionItem<ColumnedSectionItemSettings>;
|
|
@@ -18,7 +19,13 @@ export declare class LayoutColumn extends VueComponentBase<ColumnProps> {
|
|
|
18
19
|
useScrollMargingFix: boolean;
|
|
19
20
|
editorStore: LayoutCanvasStore;
|
|
20
21
|
mediaPickerService: MediaPickerService;
|
|
22
|
+
subscriptionHandler: SubscriptionHandler;
|
|
23
|
+
private delegatedSections;
|
|
24
|
+
private layoutItemDelegator;
|
|
25
|
+
private layoutItemDelegatorSubHandler;
|
|
21
26
|
private get backgroundImage();
|
|
27
|
+
created(): void;
|
|
28
|
+
beforeDestroy(): void;
|
|
22
29
|
/**
|
|
23
30
|
* Function to render the columns
|
|
24
31
|
* @param h is the hyperscript reference
|
package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitems/LayoutSection.d.ts
CHANGED
|
@@ -11,6 +11,7 @@ export interface LayoutSectionProps {
|
|
|
11
11
|
layoutId: string;
|
|
12
12
|
useScrollMargingFix: boolean;
|
|
13
13
|
tabState: object;
|
|
14
|
+
overridable?: boolean;
|
|
14
15
|
}
|
|
15
16
|
export declare class LayoutSection extends VueComponentBase<LayoutSectionProps> {
|
|
16
17
|
section: Section;
|
|
@@ -18,6 +19,7 @@ export declare class LayoutSection extends VueComponentBase<LayoutSectionProps>
|
|
|
18
19
|
layoutId: string;
|
|
19
20
|
useScrollMargingFix: boolean;
|
|
20
21
|
tabState: object;
|
|
22
|
+
overridable?: boolean;
|
|
21
23
|
editorStore: LayoutCanvasStore;
|
|
22
24
|
blockTitleSettingsStore: BlockTitleSettingsStore;
|
|
23
25
|
mediaPickerService: MediaPickerService;
|
package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/BlockSettingsPanel.d.ts
CHANGED
|
@@ -23,6 +23,7 @@ export declare class BlockSettingsPanel extends VueComponentBase<BlockSettingsPr
|
|
|
23
23
|
private blockSettingsComponentIsLoaded;
|
|
24
24
|
private model;
|
|
25
25
|
iconSettingsModel: any;
|
|
26
|
+
private blockSettingsStore;
|
|
26
27
|
created(): void;
|
|
27
28
|
onSettingsElementUpdated(settings: ReactiveLayoutItemSettings): void;
|
|
28
29
|
setBlockSettingsComponentLoadingStatus(): void;
|
package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/LayoutStructure.d.ts
CHANGED
|
@@ -14,16 +14,18 @@ export declare class LayoutStructure extends VueComponentBase<SectionSettingsPro
|
|
|
14
14
|
private omniaUxLoc;
|
|
15
15
|
blockTitleSettingsStore: BlockTitleSettingsStore;
|
|
16
16
|
blockCatalog: BlockCatalogStore;
|
|
17
|
-
layoutEditorStore: LayoutCanvasStore;
|
|
18
17
|
private themeStyleContent;
|
|
19
18
|
private model;
|
|
19
|
+
private delegatedSectionIdsMap;
|
|
20
|
+
private layoutItems;
|
|
20
21
|
created(): void;
|
|
21
|
-
|
|
22
|
+
beforeMount(): void;
|
|
22
23
|
/**
|
|
23
24
|
* Watch for section changes
|
|
24
25
|
* */
|
|
25
26
|
private onSectionChange;
|
|
26
27
|
private onItemSelected;
|
|
28
|
+
private findOriginalLayoutItem;
|
|
27
29
|
private getIcon;
|
|
28
30
|
private getItemName;
|
|
29
31
|
private getClickStyle;
|
package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/blocktitle/BlockTitle.d.ts
CHANGED
|
@@ -10,6 +10,7 @@ export declare class BlockTitleComponent extends VueComponentBase implements IWe
|
|
|
10
10
|
settingsKey: any;
|
|
11
11
|
alternativeContent?: JSX.Element;
|
|
12
12
|
wrapWithHeaderLevel?: (headerElement: JSX.Element) => JSX.Element;
|
|
13
|
+
contentClass?: string;
|
|
13
14
|
multilingualStore: MultilingualStore;
|
|
14
15
|
blockTitleSettingsStore: BlockTitleSettingsStore;
|
|
15
16
|
blockInstance: BlockInstance;
|
|
@@ -15,6 +15,7 @@ export declare class BreakPointSectionSettingsComponent extends VueComponentBase
|
|
|
15
15
|
private setActivatedControls;
|
|
16
16
|
private areSectionmarginModified;
|
|
17
17
|
private isShowHideModified;
|
|
18
|
+
private iSectionMarginVisible;
|
|
18
19
|
/**
|
|
19
20
|
* Eventhandler for column spacing changes
|
|
20
21
|
* @param value
|
|
@@ -11,6 +11,8 @@ export declare class BreakPointSettingsComponent extends VueComponentBase<BreakP
|
|
|
11
11
|
private omniaUxLoc;
|
|
12
12
|
private primaryColor;
|
|
13
13
|
private model;
|
|
14
|
+
private sectionMarginVisible;
|
|
15
|
+
private blockSettingsStore;
|
|
14
16
|
mounted(): void;
|
|
15
17
|
created(): void;
|
|
16
18
|
private activeTab;
|
package/internal-do-not-import-from-here/ux/layoutcanvas/factories/EditorLayoutItemFactory.d.ts
CHANGED
|
@@ -4,6 +4,7 @@ import { LayoutItemRegistration, BlockRegistration, Section, LayoutItem, Block,
|
|
|
4
4
|
* */
|
|
5
5
|
export declare class EditorLayoutItemFactory {
|
|
6
6
|
static createSection(layout: LoadedLayout, type: SectionTypes): Section;
|
|
7
|
+
static createDelegatedSection(layout: LayoutItem): Section;
|
|
7
8
|
static createColumn(layout: LoadedLayout): SectionItem<ColumnedSectionItemSettings>;
|
|
8
9
|
static createTab(layout: LoadedLayout): SectionItem<TabbedSectionItemSettings>;
|
|
9
10
|
static createAccordion(layout: LoadedLayout): SectionItem<AccordionedSectionItemSettings>;
|
|
@@ -27,10 +27,12 @@ export default class LayoutRendererCanvas extends VueComponentBase implements IW
|
|
|
27
27
|
private LayoutRendererCanvasClasses;
|
|
28
28
|
private timeWatchId;
|
|
29
29
|
private enableVerticalAlign;
|
|
30
|
+
private layoutItemDelegator;
|
|
31
|
+
private delegatedSections;
|
|
30
32
|
beforeCreate(): void;
|
|
31
33
|
created(): void;
|
|
34
|
+
beforeDestroy(): void;
|
|
32
35
|
mounted(): void;
|
|
33
|
-
destroyed(): void;
|
|
34
36
|
ensureBlockTitleSettingsForLayout(): void;
|
|
35
37
|
private get backgroundImage();
|
|
36
38
|
private onContainerUpdated;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { LayoutCanvasStore } from "..";
|
|
1
2
|
import { LayoutItem } from "../../../models";
|
|
2
3
|
/**
|
|
3
4
|
* Rules to check object typeings
|
|
@@ -7,7 +8,7 @@ export declare const LayoutItemRules: {
|
|
|
7
8
|
* Check if an item is an instance of a SectionRegistration
|
|
8
9
|
* @param item to type check
|
|
9
10
|
*/
|
|
10
|
-
isLastChildItem(child: LayoutItem, parent: LayoutItem): boolean;
|
|
11
|
+
isLastChildItem(child: LayoutItem, parent: LayoutItem, editorStore?: LayoutCanvasStore): boolean;
|
|
11
12
|
/**
|
|
12
13
|
* Check if an item is an instance of a SectionRegistration
|
|
13
14
|
* @param item to type check
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { IReactiveLayoutItemsSettingsStore } from "../../../models";
|
|
2
2
|
import { ISettingsKeyProvider, SettingsService } from "../../../services";
|
|
3
3
|
export interface BlockSettingsProviderConstructor {
|
|
4
|
-
|
|
4
|
+
blockSettingsStore: IReactiveLayoutItemsSettingsStore;
|
|
5
5
|
}
|
|
6
6
|
export declare class BlockSettingsProvider implements ISettingsKeyProvider {
|
|
7
|
-
|
|
7
|
+
blockSettingsStore: IReactiveLayoutItemsSettingsStore;
|
|
8
8
|
settingsService: SettingsService<any>;
|
|
9
|
-
constructor(
|
|
9
|
+
constructor(blockSettingsStore: IReactiveLayoutItemsSettingsStore);
|
|
10
10
|
protectKeyWithSecurityRole: (securityRoleId: string) => void;
|
|
11
11
|
getValue: (key: string) => Promise<any>;
|
|
12
12
|
canSetValue: (key: string) => Promise<boolean>;
|
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
import { LayoutItemSettings, DisplayBreakPoint, DisplayBreakPointSetting } from "../../../models";
|
|
2
2
|
export declare class BreakPointManager {
|
|
3
3
|
private static breakPointArray;
|
|
4
|
+
private static printBreakPointArray;
|
|
4
5
|
private static omniaUxLoc;
|
|
5
6
|
static createSettingsForDeviceBreakPoint(settings: LayoutItemSettings, breakPoint: DisplayBreakPoint): LayoutItemSettings;
|
|
6
7
|
static createSettingsFromBreakPointSettings(settings: LayoutItemSettings, breakPointSettings: Array<DisplayBreakPointSetting>): LayoutItemSettings;
|
|
7
8
|
static breakPoints(): Array<DisplayBreakPoint>;
|
|
9
|
+
static printBreakPoints(): Array<DisplayBreakPoint>;
|
|
10
|
+
static isHiddenInPrint(settings: LayoutItemSettings): boolean;
|
|
8
11
|
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { ILayoutItemDelegator, IMessageBusTopicSubscription, LayoutItem, Section } from "@omnia/fx-models";
|
|
2
|
+
import { BlockSettingsProvider } from "./BlockSettingsProvider";
|
|
3
|
+
export interface SectionOverride {
|
|
4
|
+
originalSection: Section;
|
|
5
|
+
delegatedSection: Section;
|
|
6
|
+
blockSettingsProvider: BlockSettingsProvider;
|
|
7
|
+
}
|
|
8
|
+
export declare abstract class LayoutItemDelegator implements ILayoutItemDelegator {
|
|
9
|
+
abstract onStateChanged: IMessageBusTopicSubscription<void>;
|
|
10
|
+
abstract isConfigured(layout: LayoutItem): boolean;
|
|
11
|
+
abstract isDelegated(layout: LayoutItem): boolean;
|
|
12
|
+
abstract isOverridable(layout: LayoutItem): boolean;
|
|
13
|
+
abstract set(originalLayout: LayoutItem, delegatedLayout: LayoutItem): boolean;
|
|
14
|
+
abstract get(originalLayout: LayoutItem, createDefault: () => LayoutItem): LayoutItem;
|
|
15
|
+
abstract allowToViewSettings(): boolean;
|
|
16
|
+
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ImportLayoutResult, Block } from "../../../models";
|
|
1
|
+
import { ImportLayoutResult, Block, Section } from "../../../models";
|
|
2
2
|
import { Layout, LayoutItem } from "@omnia/fx-models";
|
|
3
3
|
import { LayoutCanvasStore } from "..";
|
|
4
4
|
/**
|
|
@@ -37,4 +37,6 @@ export declare class LayoutManager {
|
|
|
37
37
|
* @param blockName the name of the block
|
|
38
38
|
*/
|
|
39
39
|
static getBlockByName(container: LayoutItem, elementName: string): LayoutItem;
|
|
40
|
+
static ensureDelegatedSections(layoutStore: LayoutCanvasStore, delegatedSections: Record<string, Section>, items: LayoutItem[]): void;
|
|
41
|
+
static ensureDelegatedSectionsForSelectedLayoutItem(layoutStore: LayoutCanvasStore, delegatedSections: Record<string, Section>, items: LayoutItem[]): void;
|
|
40
42
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ILayoutCanvasTabDefinition, Guid, ILayoutCanvasExpansionItemDefinition, ILayoutCanvasTabInstance, ILayoutCanvasExpansionItemInstance, Block, LoadedLayout, ILayoutCanvasExpansionItemDefinitionSlots } from "@omnia/fx/models";
|
|
1
|
+
import { ILayoutCanvasTabDefinition, Guid, ILayoutCanvasExpansionItemDefinition, ILayoutCanvasTabInstance, ILayoutCanvasExpansionItemInstance, Block, LoadedLayout, ILayoutCanvasExpansionItemDefinitionSlots, IReactiveLayoutItemsSettingsStore } from "@omnia/fx/models";
|
|
2
2
|
import { MessageBusExposeOnlySubscription } from "@omnia/fx";
|
|
3
3
|
export declare class TabsLayoutSettings implements ILayoutCanvasTabDefinition {
|
|
4
4
|
static tabId: Guid;
|
|
@@ -121,7 +121,7 @@ export declare class TabBlockSettings implements ILayoutCanvasTabDefinition {
|
|
|
121
121
|
beforeCreate: MessageBusExposeOnlySubscription<ILayoutCanvasTabDefinition>;
|
|
122
122
|
created: MessageBusExposeOnlySubscription<ILayoutCanvasTabInstance>;
|
|
123
123
|
};
|
|
124
|
-
createInstance(layout: LoadedLayout, block?: Block): Promise<ILayoutCanvasTabInstance>;
|
|
124
|
+
createInstance(layout: LoadedLayout, block?: Block, blockSettingsStore?: IReactiveLayoutItemsSettingsStore): Promise<ILayoutCanvasTabInstance>;
|
|
125
125
|
}
|
|
126
126
|
export declare class TabBlockLayoutSettings implements ILayoutCanvasTabDefinition {
|
|
127
127
|
static tabId: Guid;
|
|
@@ -42,13 +42,17 @@ export declare class LayoutBlockRenderer extends VueComponentBase<BlockRendererP
|
|
|
42
42
|
multilingualStore: MultilingualStore;
|
|
43
43
|
blockInstance: BlockInstance;
|
|
44
44
|
anchorLink: AnchorLink;
|
|
45
|
+
private subscriptionPrintHandler;
|
|
45
46
|
private isHideBlock;
|
|
46
47
|
private targetCurrentUser;
|
|
47
48
|
private isEditMode;
|
|
48
49
|
private isLazyLoad;
|
|
50
|
+
private isHideBlockInPrint;
|
|
51
|
+
private isRenderInViewPort;
|
|
49
52
|
onBlockChanged(): void;
|
|
50
53
|
beforeCreate(): void;
|
|
51
54
|
created(): void;
|
|
55
|
+
private subcribeOnPrint;
|
|
52
56
|
beforeDestroy(): void;
|
|
53
57
|
private scrollIntoViewDisabled;
|
|
54
58
|
private handleAnchorLink;
|