@omnia/wcm 7.10.0-preview.6 → 7.10.0-preview.7
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/core/loc/CoreLocalization.d.ts +1 -1
- package/internal-do-not-import-from-here/core/loc/EditorLocalization.d.ts +4 -0
- package/internal-do-not-import-from-here/core/loc/PageRollupLocalization.d.ts +3 -0
- package/internal-do-not-import-from-here/fx/routing/WcmRouter.d.ts +1 -1
- package/package.json +1 -1
|
@@ -131,6 +131,7 @@ export declare module EditorLocalization {
|
|
|
131
131
|
ArchivedAt: string;
|
|
132
132
|
Comment: string;
|
|
133
133
|
CreateCopy: string;
|
|
134
|
+
CreateCopyTooltip: string;
|
|
134
135
|
Terminate: string;
|
|
135
136
|
TerminateConfirmationMessage: string;
|
|
136
137
|
RestoreConfirmationMessage: string;
|
|
@@ -905,6 +906,9 @@ export declare module EditorLocalization {
|
|
|
905
906
|
SendEmail: string;
|
|
906
907
|
};
|
|
907
908
|
};
|
|
909
|
+
EditRuleBtn: string;
|
|
910
|
+
DeleteRuleBtn: string;
|
|
911
|
+
SendEmailBtn: string;
|
|
908
912
|
};
|
|
909
913
|
RemovePageReviewRuleSettings: {
|
|
910
914
|
Title: string;
|
|
@@ -22,7 +22,7 @@ export declare class WcmRouter {
|
|
|
22
22
|
private loadTreeForPath;
|
|
23
23
|
navigate<T extends NavigationNode<NavigationData>>(to: T, targetVariationId?: any, forceToNewNavigationState?: boolean): Promise<T>;
|
|
24
24
|
navigateWithVariationTargeting<T extends NavigationNode<NavigationData>>(to: T): Promise<T>;
|
|
25
|
-
navigateFromExternalApp<T extends NavigationNode<NavigationData>>(to: T, targetVariationId?: any): void;
|
|
25
|
+
navigateFromExternalApp<T extends NavigationNode<NavigationData>>(to: T, targetVariationId?: any, openEditor?: boolean): void;
|
|
26
26
|
private buildRelativePath;
|
|
27
27
|
private getTargetingVariation;
|
|
28
28
|
onDisposing(): void;
|