@omnia/wcm 7.10.0-preview.57 → 7.10.0-preview.59
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/EditorLocalization.d.ts +13 -1
- package/internal-do-not-import-from-here/fx/models/pages/RestorePageMessage.d.ts +1 -1
- package/internal-do-not-import-from-here/fx/shared/PageRollupStoreHelper.d.ts +1 -0
- package/internal-do-not-import-from-here/models/pagearchive/NavigationArchiveDependency.d.ts +1 -0
- package/package.json +1 -1
|
@@ -733,10 +733,21 @@ export declare module EditorLocalization {
|
|
|
733
733
|
Title: string;
|
|
734
734
|
ConfirmationMessage: string;
|
|
735
735
|
};
|
|
736
|
-
|
|
736
|
+
DeleteLabel: {
|
|
737
737
|
ConfirmationMessage: string;
|
|
738
738
|
Title: string;
|
|
739
739
|
};
|
|
740
|
+
WarningMoveNodeDialog: {
|
|
741
|
+
GenericNodeContainsChildren: string;
|
|
742
|
+
PageNodeHasGenericNodeWithChildren: string;
|
|
743
|
+
NodeUnderGenericAncestor: string;
|
|
744
|
+
Title: string;
|
|
745
|
+
};
|
|
746
|
+
WarningDeleteNodeDialog: {
|
|
747
|
+
GenericNodeContainsChildren: string;
|
|
748
|
+
PageNodeHasGenericNodeWithChildren: string;
|
|
749
|
+
Title: string;
|
|
750
|
+
};
|
|
740
751
|
DuplicateUrlWarningMessage: string;
|
|
741
752
|
DeleteBlock: {
|
|
742
753
|
Title: string;
|
|
@@ -888,6 +899,7 @@ export declare module EditorLocalization {
|
|
|
888
899
|
SentFrom: string;
|
|
889
900
|
Comment: string;
|
|
890
901
|
History: string;
|
|
902
|
+
ArchiveWarning: string;
|
|
891
903
|
};
|
|
892
904
|
ApprovalHistory: {
|
|
893
905
|
SendApprovalActionMessage: string;
|
|
@@ -2,6 +2,6 @@ import { PageArchiveInformationReference } from "../../../models";
|
|
|
2
2
|
import { NodeId } from "../navigation";
|
|
3
3
|
export interface RestorePageMessage {
|
|
4
4
|
pageArchiveInformationReference: PageArchiveInformationReference;
|
|
5
|
-
|
|
5
|
+
parentNavigationNodeId?: NodeId;
|
|
6
6
|
currentPageNavigationNodeUrlSegment?: string;
|
|
7
7
|
}
|
|
@@ -219,6 +219,7 @@ export declare class BatchQueryRegistration {
|
|
|
219
219
|
resetPaging(): Promise<void>;
|
|
220
220
|
execute(): Promise<number>;
|
|
221
221
|
getPagingData(pageNumber: number): Promise<number>;
|
|
222
|
+
setPageNumber(pageNumber: number): void;
|
|
222
223
|
getNextPagingData(): Promise<number>;
|
|
223
224
|
private noNextPaging;
|
|
224
225
|
private loadCurrentPageData;
|
package/internal-do-not-import-from-here/models/pagearchive/NavigationArchiveDependency.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { PageNavigationNode, PageNavigationData, NavigationNode, NavigationData } from "../../fx/models";
|
|
2
2
|
export interface NavigationArchiveDependency {
|
|
3
|
+
parentNavigationNode: NavigationNode<NavigationData>;
|
|
3
4
|
parentPageNavigationNode?: PageNavigationNode<PageNavigationData>;
|
|
4
5
|
currentPageNavigationNode: PageNavigationNode<PageNavigationData>;
|
|
5
6
|
archivedNavigationNodes: Array<NavigationNode<NavigationData>>;
|