@omnia/wcm 7.0.79-preview → 8.0.1-vnext
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/index.d.ts +2 -1
- package/internal-do-not-import-from-here/core/Utils.d.ts +4 -1
- package/internal-do-not-import-from-here/core/loc/CoreLocalization.d.ts +5 -0
- package/internal-do-not-import-from-here/core/loc/EditorLocalization.d.ts +1 -0
- package/internal-do-not-import-from-here/core/loc/PageRollupLocalization.d.ts +8 -0
- package/internal-do-not-import-from-here/core/loc/PublishingAppLocalization.d.ts +1 -0
- package/internal-do-not-import-from-here/core/ux/EnterprisePropertyRenderer.d.ts +1 -1
- package/internal-do-not-import-from-here/core/ux/FilterTargetingPropertyValueInput.d.ts +5 -5
- package/internal-do-not-import-from-here/fx/constants.d.ts +3 -0
- package/internal-do-not-import-from-here/fx/models/Constants.d.ts +1 -0
- package/internal-do-not-import-from-here/fx/models/Constants.js +2 -1
- package/internal-do-not-import-from-here/fx/models/ManifestIds.d.ts +3 -0
- package/internal-do-not-import-from-here/fx/models/ManifestIds.js +4 -1
- package/internal-do-not-import-from-here/fx/models/components/ContentBlock.d.ts +2 -0
- package/internal-do-not-import-from-here/fx/models/components/PageFeedbacksStyles.d.ts +0 -1
- package/internal-do-not-import-from-here/fx/models/components/PageRollupBlockStyles.d.ts +1 -0
- package/internal-do-not-import-from-here/fx/models/enterpriseglossary/WCMEnterpriseGlossary.d.ts +18 -0
- package/internal-do-not-import-from-here/fx/models/enterpriseglossary/WCMEnterpriseGlossary.js +22 -0
- package/internal-do-not-import-from-here/fx/models/enterpriseglossary/index.d.ts +1 -0
- package/internal-do-not-import-from-here/fx/models/enterpriseglossary/index.js +1 -0
- package/internal-do-not-import-from-here/fx/models/index.d.ts +2 -0
- package/internal-do-not-import-from-here/fx/models/index.js +2 -0
- package/internal-do-not-import-from-here/fx/models/linkpicker/ILinkPickerProvider.d.ts +2 -2
- package/internal-do-not-import-from-here/fx/models/navigation/NavigationData.js +2 -2
- package/internal-do-not-import-from-here/fx/models/pagequery/PageRollupListViewSettings.d.ts +4 -0
- package/internal-do-not-import-from-here/fx/models/pages/PageCollectionData.d.ts +1 -0
- package/internal-do-not-import-from-here/fx/models/pages/PageData.js +1 -1
- package/internal-do-not-import-from-here/fx/models/urlstate/UrlState.d.ts +25 -0
- package/internal-do-not-import-from-here/fx/models/urlstate/UrlState.js +2 -0
- package/internal-do-not-import-from-here/fx/models/urlstate/index.d.ts +1 -0
- package/internal-do-not-import-from-here/fx/models/urlstate/index.js +4 -0
- package/internal-do-not-import-from-here/fx/services/UrlStateService.d.ts +9 -0
- package/internal-do-not-import-from-here/fx/services/index.d.ts +1 -0
- package/internal-do-not-import-from-here/fx/stores/BreakpointStore.d.ts +3 -3
- package/internal-do-not-import-from-here/fx/stores/ChannelManagementStore.d.ts +3 -1
- package/internal-do-not-import-from-here/fx/stores/UrlHistoryStore.d.ts +23 -0
- package/internal-do-not-import-from-here/fx/stores/index.d.ts +1 -0
- package/internal-do-not-import-from-here/fx/ux/richtexteditorextensions/LinkPicker/LinkPickerMenu.d.ts +2 -2
- package/internal-do-not-import-from-here/fx/ux/richtexteditorextensions/LinkPicker/LinkPickerNode.d.ts +3 -11
- package/internal-do-not-import-from-here/fx/ux/richtexteditorextensions/LinkPicker/LinkPickerToolbar.d.ts +2 -2
- package/internal-do-not-import-from-here/manifests/omnia.wcm.fx.core.manifest.json +1 -1
- package/internal-do-not-import-from-here/manifests/omnia.wcm.fx.manifest.json +1 -1
- package/internal-do-not-import-from-here/models/TypedNamedProperties.js +1 -1
- package/internal-do-not-import-from-here/models/publishingapp/editor/IActionButton.d.ts +1 -2
- package/internal-do-not-import-from-here/wctypings.d.ts +1 -0
- package/package.json +1 -1
- package/internal-do-not-import-from-here/wcdefinitions.json +0 -1
package/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Page, NavigationNode, NavigationData, VariationId, VariationString, Variation } from "@omnia/wcm/models";
|
|
2
|
-
import { LayoutItem } from "@omnia/fx-models";
|
|
2
|
+
import { GuidValue, Layout, LayoutItem } from "@omnia/fx-models";
|
|
3
3
|
export declare module Utils {
|
|
4
4
|
function isSupportedByOfficeWebApp(documentUrl: string): boolean;
|
|
5
5
|
function getOfficeIconByFileExtension(extension: string): string;
|
|
@@ -60,3 +60,6 @@ export declare module WCMGovernanceUtils {
|
|
|
60
60
|
function getMonth(date: Date, numberOfMonths: any): Date;
|
|
61
61
|
function equalMonth(date: Date, compare: Date): boolean;
|
|
62
62
|
}
|
|
63
|
+
export declare module LayoutUtils {
|
|
64
|
+
function generateEmptyLayout(id?: GuidValue, ownerLayoutId?: GuidValue): Layout;
|
|
65
|
+
}
|
|
@@ -242,6 +242,11 @@ export declare module WCMCoreLocalization {
|
|
|
242
242
|
Title: string;
|
|
243
243
|
ConsentInformation: string;
|
|
244
244
|
};
|
|
245
|
+
BrokenLinkDetection: {
|
|
246
|
+
Category: string;
|
|
247
|
+
Description: string;
|
|
248
|
+
Title: string;
|
|
249
|
+
};
|
|
245
250
|
};
|
|
246
251
|
ImageScalingBlockSettings: {
|
|
247
252
|
ForceDefaultScaling: string;
|
|
@@ -161,6 +161,8 @@ export declare module PageRollupLocalization {
|
|
|
161
161
|
UniqueUsers: string;
|
|
162
162
|
Aggregate: string;
|
|
163
163
|
};
|
|
164
|
+
ShowAvatar: string;
|
|
165
|
+
ShowUserName: string;
|
|
164
166
|
};
|
|
165
167
|
DynamicRoller: {
|
|
166
168
|
Title: string;
|
|
@@ -324,9 +326,15 @@ export declare module PageRollupLocalization {
|
|
|
324
326
|
Week: string;
|
|
325
327
|
Day: string;
|
|
326
328
|
};
|
|
329
|
+
ViewMode: {
|
|
330
|
+
MonthView: string;
|
|
331
|
+
WeekView: string;
|
|
332
|
+
DayView: string;
|
|
333
|
+
};
|
|
327
334
|
EnableCalendarType: string;
|
|
328
335
|
Height: string;
|
|
329
336
|
IncludeTime: string;
|
|
337
|
+
Week: string;
|
|
330
338
|
Weekdays: {
|
|
331
339
|
Title: string;
|
|
332
340
|
SunSat: string;
|
|
@@ -32,9 +32,9 @@ export declare class FilterTargetingPropertyValueInput extends VueComponentBase<
|
|
|
32
32
|
created(): void;
|
|
33
33
|
private getSelectionTargetingProperties;
|
|
34
34
|
private onTargetPropertyCheckboxChange;
|
|
35
|
-
renderFilterTypePicker():
|
|
36
|
-
renderFixedValuePicker():
|
|
37
|
-
renderUserTypePicker():
|
|
38
|
-
renderIncludeEmptyCheckbox():
|
|
39
|
-
render():
|
|
35
|
+
renderFilterTypePicker(): JSX.Element;
|
|
36
|
+
renderFixedValuePicker(): JSX.Element;
|
|
37
|
+
renderUserTypePicker(): JSX.Element[];
|
|
38
|
+
renderIncludeEmptyCheckbox(): JSX.Element;
|
|
39
|
+
render(): JSX.Element;
|
|
40
40
|
}
|
|
@@ -11,6 +11,7 @@ export declare const PublishingAppUniqueModelName = "owcmpublishingappid";
|
|
|
11
11
|
export declare const GovernanceDashboard: {
|
|
12
12
|
scopePageId: Guid;
|
|
13
13
|
scopeUserActivity: Guid;
|
|
14
|
+
scopeUrlId: Guid;
|
|
14
15
|
Filters: {
|
|
15
16
|
PublishingApps: Guid;
|
|
16
17
|
PageTypes: Guid;
|
|
@@ -27,6 +28,8 @@ export declare const GovernanceDashboard: {
|
|
|
27
28
|
UnderuserdId: Guid;
|
|
28
29
|
ActiveUserReader: Guid;
|
|
29
30
|
ActiveUserContributor: Guid;
|
|
31
|
+
UrlStatusNotFoundId: Guid;
|
|
32
|
+
UrlStatusUnauthorizedId: Guid;
|
|
30
33
|
};
|
|
31
34
|
Properties: {
|
|
32
35
|
ReachFieldId: Guid;
|
|
@@ -128,6 +128,7 @@ exports.Constants = {
|
|
|
128
128
|
socialReactions: "7aa05c7f-c939-4224-9835-be6fe847ccf8",
|
|
129
129
|
webContentManagementCore: "5870a19f-3904-4a94-9b94-e5a2140ab000",
|
|
130
130
|
calendarRollupCore: "07ab2c12-6f73-45b5-bf6f-864114a66415",
|
|
131
|
+
brokenLinkDetection: "d1b958e2-8023-4324-a538-157b8f2c57b3"
|
|
131
132
|
},
|
|
132
133
|
communityAppDefinitionInfo: {
|
|
133
134
|
id: new fx_models_1.Guid("3b0e3cd4-911e-49cf-a401-b6c904526b85"),
|
|
@@ -166,7 +167,6 @@ exports.Constants = {
|
|
|
166
167
|
};
|
|
167
168
|
class WCMEnterpriseProperties {
|
|
168
169
|
}
|
|
169
|
-
exports.WCMEnterpriseProperties = WCMEnterpriseProperties;
|
|
170
170
|
WCMEnterpriseProperties.Recipients = {
|
|
171
171
|
id: new fx_models_1.Guid("fbe57b9b-b330-41c6-bb49-67ea4cf76af5"),
|
|
172
172
|
internalName: "owcmrecipients"
|
|
@@ -175,6 +175,7 @@ WCMEnterpriseProperties.ScheduledStartDate = {
|
|
|
175
175
|
id: new fx_models_1.Guid("1d5a4c79-8a8c-4e6a-b6a4-9ed1856c4360"),
|
|
176
176
|
internalName: "owcmscheduledstartdate"
|
|
177
177
|
};
|
|
178
|
+
exports.WCMEnterpriseProperties = WCMEnterpriseProperties;
|
|
178
179
|
exports.InfoScreenConstants = {
|
|
179
180
|
get suffixInfoScreenSettingsKey() {
|
|
180
181
|
return "omx.infoscreendatakey_";
|
|
@@ -99,6 +99,7 @@ export declare class WcmResourceManifests {
|
|
|
99
99
|
static get PageRollupFilterEngineChannel(): Guid;
|
|
100
100
|
static get PageRollupFilterEngineCore(): Guid;
|
|
101
101
|
static get PageRollupRendererResources(): Guid;
|
|
102
|
+
static get WCMGlossaryType(): Guid;
|
|
102
103
|
}
|
|
103
104
|
export declare class WcmWebComponentManifests {
|
|
104
105
|
static get LinkPickerExtension(): Guid;
|
|
@@ -361,6 +362,8 @@ export declare class WcmWebComponentManifests {
|
|
|
361
362
|
static get PageRollupFilterEngineSelectionsAreaCheckedOutByProperty(): Guid;
|
|
362
363
|
static get PageRollupCheckedOutByPropertySettings(): Guid;
|
|
363
364
|
static get PageRollupCheckedOutByPropertyDefaultValueInput(): Guid;
|
|
365
|
+
static get WCMGlossaryUISettingBlade(): Guid;
|
|
366
|
+
static get WCMGlossaryUISettingsTree(): Guid;
|
|
364
367
|
}
|
|
365
368
|
export declare class InfoScreenManifests {
|
|
366
369
|
static get AdminRegistration(): Guid;
|
|
@@ -112,6 +112,7 @@ class WcmResourceManifests {
|
|
|
112
112
|
static get PageRollupFilterEngineChannel() { return new fx_models_1.Guid("7d732cf8-a310-4588-bb21-131188651249"); }
|
|
113
113
|
static get PageRollupFilterEngineCore() { return new fx_models_1.Guid("edd540e0-2f6b-488e-8f7b-7c5501f46e97"); }
|
|
114
114
|
static get PageRollupRendererResources() { return new fx_models_1.Guid("74EA3346-4A90-46AA-996B-FD195002F28C"); }
|
|
115
|
+
static get WCMGlossaryType() { return new fx_models_1.Guid("47B70789-B295-4DA7-BB4C-95BD275A4606"); }
|
|
115
116
|
}
|
|
116
117
|
exports.WcmResourceManifests = WcmResourceManifests;
|
|
117
118
|
class WcmWebComponentManifests {
|
|
@@ -373,14 +374,16 @@ class WcmWebComponentManifests {
|
|
|
373
374
|
static get PageRollupFilterEngineSelectionsAreaCheckedOutByProperty() { return new fx_models_1.Guid("84465527-02f3-4429-bcfd-4b75f0640898"); }
|
|
374
375
|
static get PageRollupCheckedOutByPropertySettings() { return new fx_models_1.Guid("19c3db65-976a-4cb8-b6a2-e85e6e7d0a94"); }
|
|
375
376
|
static get PageRollupCheckedOutByPropertyDefaultValueInput() { return new fx_models_1.Guid("fafaef64-45e2-428d-9fa9-91553b12d33c"); }
|
|
377
|
+
static get WCMGlossaryUISettingBlade() { return new fx_models_1.Guid("B7FB96AB-F603-4CF2-9A6C-D942154495D7"); }
|
|
378
|
+
static get WCMGlossaryUISettingsTree() { return new fx_models_1.Guid("72FF9C45-7188-4B11-A856-133D7E3E28C8"); }
|
|
376
379
|
}
|
|
377
|
-
exports.WcmWebComponentManifests = WcmWebComponentManifests;
|
|
378
380
|
WcmWebComponentManifests.Blocks = class {
|
|
379
381
|
static get Banner() { return new fx_models_1.Guid("fb5c76d4-ab00-49f7-b9e2-f7228a39a7aa"); }
|
|
380
382
|
static get BannerSettings() { return new fx_models_1.Guid("af494456-7ec1-4438-9b41-c15058e24bec"); }
|
|
381
383
|
static get BannerComponent() { return new fx_models_1.Guid("4430685f-c1e2-468e-84b7-f0a397891d69"); }
|
|
382
384
|
static get BannerEdit() { return new fx_models_1.Guid("af3408d0-3c8f-4877-b239-9e12bbf68f30"); }
|
|
383
385
|
};
|
|
386
|
+
exports.WcmWebComponentManifests = WcmWebComponentManifests;
|
|
384
387
|
class InfoScreenManifests {
|
|
385
388
|
static get AdminRegistration() { return new fx_models_1.Guid("cbe5ed4b-09b0-4153-a172-1871cb6add69"); }
|
|
386
389
|
static get InfoScreenCore() { return new fx_models_1.Guid("ac2df2e8-3b28-4543-a1f1-3cc6a5ca3287"); }
|
|
@@ -144,6 +144,7 @@ export declare const PageRollupBlockCalendarViewStyles: {
|
|
|
144
144
|
toolbarWrapper: types.NestedCSSProperties;
|
|
145
145
|
toolbarLeft: types.NestedCSSProperties;
|
|
146
146
|
toolbarFloat: types.NestedCSSProperties;
|
|
147
|
+
toolbarSelect: types.NestedCSSProperties;
|
|
147
148
|
};
|
|
148
149
|
export declare const PageRollupUniqueUsersDetailsStyles: {
|
|
149
150
|
wrapper: types.NestedCSSProperties;
|
package/internal-do-not-import-from-here/fx/models/enterpriseglossary/WCMEnterpriseGlossary.d.ts
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { EnterpriseGlossary, TermUISettings } from "@omnia/fx-models";
|
|
2
|
+
export declare class WCMGlossary extends EnterpriseGlossary {
|
|
3
|
+
readonly type: import("@omnia/fx-models").Guid;
|
|
4
|
+
title: string;
|
|
5
|
+
data: WCMGlossaryData;
|
|
6
|
+
}
|
|
7
|
+
export declare class WCMGlossaryVariation {
|
|
8
|
+
static get PageType(): string;
|
|
9
|
+
static get WorkflowStatus(): string;
|
|
10
|
+
}
|
|
11
|
+
export interface WCMGlossaryData {
|
|
12
|
+
[key: number]: TermUISettings;
|
|
13
|
+
type: WCMGlossaryType;
|
|
14
|
+
}
|
|
15
|
+
export declare enum WCMGlossaryType {
|
|
16
|
+
PageType = 0,
|
|
17
|
+
WorkflowStatus = 1
|
|
18
|
+
}
|
package/internal-do-not-import-from-here/fx/models/enterpriseglossary/WCMEnterpriseGlossary.js
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.WCMGlossaryType = exports.WCMGlossaryVariation = exports.WCMGlossary = void 0;
|
|
4
|
+
const ManifestIds_1 = require("../ManifestIds");
|
|
5
|
+
const fx_models_1 = require("@omnia/fx-models");
|
|
6
|
+
class WCMGlossary extends fx_models_1.EnterpriseGlossary {
|
|
7
|
+
constructor() {
|
|
8
|
+
super(...arguments);
|
|
9
|
+
this.type = ManifestIds_1.WcmResourceManifests.WCMGlossaryType;
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
exports.WCMGlossary = WCMGlossary;
|
|
13
|
+
class WCMGlossaryVariation {
|
|
14
|
+
static get PageType() { return "Page Type"; }
|
|
15
|
+
static get WorkflowStatus() { return "Workflow Status"; }
|
|
16
|
+
}
|
|
17
|
+
exports.WCMGlossaryVariation = WCMGlossaryVariation;
|
|
18
|
+
var WCMGlossaryType;
|
|
19
|
+
(function (WCMGlossaryType) {
|
|
20
|
+
WCMGlossaryType[WCMGlossaryType["PageType"] = 0] = "PageType";
|
|
21
|
+
WCMGlossaryType[WCMGlossaryType["WorkflowStatus"] = 1] = "WorkflowStatus";
|
|
22
|
+
})(WCMGlossaryType = exports.WCMGlossaryType || (exports.WCMGlossaryType = {}));
|
|
@@ -40,3 +40,5 @@ tslib_1.__exportStar(require("./digitalsignage"), exports);
|
|
|
40
40
|
tslib_1.__exportStar(require("./channelquery"), exports);
|
|
41
41
|
tslib_1.__exportStar(require("./fileuploader"), exports);
|
|
42
42
|
tslib_1.__exportStar(require("./appsettings"), exports);
|
|
43
|
+
tslib_1.__exportStar(require("./urlstate"), exports);
|
|
44
|
+
tslib_1.__exportStar(require("./enterpriseglossary"), exports);
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { LinkItem,
|
|
1
|
+
import { LinkItem, CustomLinkPropertyData } from "@omnia/wcm/models";
|
|
2
2
|
export interface ILinkPickerProvider {
|
|
3
3
|
linkData?: LinkItem;
|
|
4
|
-
propertyData?:
|
|
4
|
+
propertyData?: CustomLinkPropertyData;
|
|
5
5
|
}
|
|
@@ -4,9 +4,9 @@ exports.WCMNavigationDataTypes = exports.NavigationDataType = exports.Navigation
|
|
|
4
4
|
const fx_models_1 = require("@omnia/fx-models");
|
|
5
5
|
class NavigationRenders {
|
|
6
6
|
}
|
|
7
|
-
exports.NavigationRenders = NavigationRenders;
|
|
8
7
|
NavigationRenders.page = new fx_models_1.Guid("5f707a83-4594-4218-8569-30b26d67948e");
|
|
9
8
|
NavigationRenders.link = new fx_models_1.Guid("2b416031-3750-4328-ae8e-41a0508939b1");
|
|
9
|
+
exports.NavigationRenders = NavigationRenders;
|
|
10
10
|
/**
|
|
11
11
|
* This is no enum, it's only used to get typying and compile errors.
|
|
12
12
|
* */
|
|
@@ -18,7 +18,6 @@ var NavigationDataType;
|
|
|
18
18
|
* */
|
|
19
19
|
class WCMNavigationDataTypes {
|
|
20
20
|
}
|
|
21
|
-
exports.WCMNavigationDataTypes = WCMNavigationDataTypes;
|
|
22
21
|
/// <summary>
|
|
23
22
|
/// Use maskable values
|
|
24
23
|
/// </summary>
|
|
@@ -28,3 +27,4 @@ WCMNavigationDataTypes.pageCollection = 4;
|
|
|
28
27
|
WCMNavigationDataTypes.link = 8;
|
|
29
28
|
//const int FutureReserved = 4096;
|
|
30
29
|
WCMNavigationDataTypes.all = ~0;
|
|
30
|
+
exports.WCMNavigationDataTypes = WCMNavigationDataTypes;
|
package/internal-do-not-import-from-here/fx/models/pagequery/PageRollupListViewSettings.d.ts
CHANGED
|
@@ -21,6 +21,10 @@ export interface ListViewUniqueUsersDetailsColumn extends ListViewColumn {
|
|
|
21
21
|
targetNoOfUsers?: number;
|
|
22
22
|
showDetails?: boolean;
|
|
23
23
|
}
|
|
24
|
+
export interface ListViewPersonColumn extends ListViewColumn {
|
|
25
|
+
showAvatar?: boolean;
|
|
26
|
+
showUserName?: boolean;
|
|
27
|
+
}
|
|
24
28
|
export interface PageRollupListViewSettings extends PageRollupViewSettings {
|
|
25
29
|
columns: Array<ListViewColumn>;
|
|
26
30
|
navigationStartNodeId?: number;
|
|
@@ -32,6 +32,7 @@ export interface PageCollectionData extends PlainPageData {
|
|
|
32
32
|
yammerIntegrationRules: Array<YammerIntegrationRule>;
|
|
33
33
|
overriddenPageTypeSettings?: OverriddenPageTypeSetting[];
|
|
34
34
|
taxonomyPropertyConnectionSettings: TaxonomyPropertyConnectionSettings;
|
|
35
|
+
enableMandatoryChannels: boolean;
|
|
35
36
|
/**
|
|
36
37
|
* This property is used as inital value for creating Page Collection Navigation Node.
|
|
37
38
|
* */
|
|
@@ -12,7 +12,6 @@ var PageDataType;
|
|
|
12
12
|
* */
|
|
13
13
|
class WCMPageTypes {
|
|
14
14
|
}
|
|
15
|
-
exports.WCMPageTypes = WCMPageTypes;
|
|
16
15
|
/// <summary>
|
|
17
16
|
/// Use maskable values
|
|
18
17
|
/// </summary>
|
|
@@ -21,3 +20,4 @@ WCMPageTypes.pageType = 2;
|
|
|
21
20
|
WCMPageTypes.pageCollection = 4;
|
|
22
21
|
//const int FutureReserved = 4096;
|
|
23
22
|
WCMPageTypes.all = ~0;
|
|
23
|
+
exports.WCMPageTypes = WCMPageTypes;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { HttpStatusCode } from "@omnia/fx-models";
|
|
2
|
+
export interface UrlStatusMonthlyCountView {
|
|
3
|
+
count: number;
|
|
4
|
+
month: number;
|
|
5
|
+
year: number;
|
|
6
|
+
}
|
|
7
|
+
export interface UrlStatusMonthlySummaryView {
|
|
8
|
+
route: string;
|
|
9
|
+
count: number;
|
|
10
|
+
}
|
|
11
|
+
export interface UrlStatusModel {
|
|
12
|
+
route: string;
|
|
13
|
+
refererUrl: string;
|
|
14
|
+
statusCode: HttpStatusCode;
|
|
15
|
+
user: string;
|
|
16
|
+
createdAt?: string;
|
|
17
|
+
}
|
|
18
|
+
export interface UrlStatusQuery {
|
|
19
|
+
itemLimit?: number;
|
|
20
|
+
skip?: number;
|
|
21
|
+
statusCode: HttpStatusCode;
|
|
22
|
+
startTime: Date;
|
|
23
|
+
endTime: Date;
|
|
24
|
+
route?: string;
|
|
25
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./UrlState";
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { UrlStatusModel, UrlStatusMonthlyCountView, UrlStatusMonthlySummaryView, UrlStatusQuery } from "../models";
|
|
2
|
+
export declare class UrlStateService {
|
|
3
|
+
private httpClient;
|
|
4
|
+
private readonly baseUrl;
|
|
5
|
+
getMonthlyCount: (payload: UrlStatusQuery) => Promise<UrlStatusMonthlyCountView[]>;
|
|
6
|
+
getMonthlyCountByUrls: (payload: UrlStatusQuery) => Promise<UrlStatusMonthlySummaryView[]>;
|
|
7
|
+
getUrlDetails: (payload: UrlStatusQuery) => Promise<UrlStatusModel[]>;
|
|
8
|
+
saveUrl: (payload: UrlStatusModel) => Promise<void>;
|
|
9
|
+
}
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { Store } from "@omnia/fx/stores";
|
|
2
|
-
import {
|
|
2
|
+
import { useBreakPoints } from "@omnia/fx/ux";
|
|
3
3
|
export declare class BreakpointStore extends Store {
|
|
4
4
|
private breakpoint;
|
|
5
5
|
protected onActivated(): void;
|
|
6
6
|
protected onDisposing(): void;
|
|
7
7
|
getters: {
|
|
8
|
-
currentBreakpoint: () =>
|
|
8
|
+
currentBreakpoint: () => ReturnType<typeof useBreakPoints>;
|
|
9
9
|
};
|
|
10
10
|
mutations: {
|
|
11
|
-
updateBreakpoint: import("@omnia/fx/stores").StoreMutation<(breakpoint:
|
|
11
|
+
updateBreakpoint: import("@omnia/fx/stores").StoreMutation<(breakpoint: ReturnType<typeof useBreakPoints>) => void, (breakpoint: import("@omnia/fx-models").Breakpoint) => import("@omnia/fx-models").IMessageBusSubscriptionHandler>;
|
|
12
12
|
};
|
|
13
13
|
}
|
|
@@ -29,7 +29,9 @@ export declare class ChannelManagementStore extends Store {
|
|
|
29
29
|
private userPublishingChannelSubscripton;
|
|
30
30
|
private ensuredUserPublishingChannelSubscriptonPromise;
|
|
31
31
|
private publishedChannelsOfPageLoadPromise;
|
|
32
|
-
|
|
32
|
+
channelPages: import("@omnia/fx/stores").StoreState<{
|
|
33
|
+
[key: string]: ChannelPage[];
|
|
34
|
+
}>;
|
|
33
35
|
private channelPagesLoadPromise;
|
|
34
36
|
private isPublishingPageToChannels;
|
|
35
37
|
private ensuredLoadDataPromise;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { Store } from "@omnia/fx/stores";
|
|
2
|
+
export interface StackedUrl {
|
|
3
|
+
order: number;
|
|
4
|
+
url: string;
|
|
5
|
+
}
|
|
6
|
+
export declare class SessionUrlHistoryStore extends Store {
|
|
7
|
+
private previousUrlStack;
|
|
8
|
+
onActivated(): void;
|
|
9
|
+
onDisposing(): void;
|
|
10
|
+
/**
|
|
11
|
+
* Implementation of getters
|
|
12
|
+
*/
|
|
13
|
+
getters: {
|
|
14
|
+
previousUrl: () => StackedUrl;
|
|
15
|
+
fullHistory: () => StackedUrl[];
|
|
16
|
+
};
|
|
17
|
+
/**
|
|
18
|
+
* Implementation of mutations
|
|
19
|
+
*/
|
|
20
|
+
mutations: {
|
|
21
|
+
push: import("@omnia/fx/stores").StoreMutation<(newState: string) => void, (newState: string) => import("@omnia/fx-models").IMessageBusSubscriptionHandler>;
|
|
22
|
+
};
|
|
23
|
+
}
|
|
@@ -42,6 +42,6 @@ export default class LinkPickerMenu extends ToolbarExtension implements ToolbarP
|
|
|
42
42
|
private onAddLinkClicked;
|
|
43
43
|
private onRemoveLink;
|
|
44
44
|
private onConfigureProviders;
|
|
45
|
-
render():
|
|
46
|
-
renderCreateLinkDialog():
|
|
45
|
+
render(): JSX.Element;
|
|
46
|
+
renderCreateLinkDialog(): JSX.Element;
|
|
47
47
|
}
|
|
@@ -1,11 +1,3 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
get schema(): any;
|
|
5
|
-
keys(): {
|
|
6
|
-
Space: (state: any, dispatch: any, view: any) => boolean;
|
|
7
|
-
};
|
|
8
|
-
commands({ type }: {
|
|
9
|
-
type: any;
|
|
10
|
-
}): (attrs: any) => (state: any, dispatch: any) => void;
|
|
11
|
-
}
|
|
1
|
+
import { Node } from "@tiptap/core";
|
|
2
|
+
declare const _default: Node<any, any>;
|
|
3
|
+
export default _default;
|
|
@@ -30,7 +30,7 @@ export default class LinkPickerToolbar extends ToolbarExtension implements Toolb
|
|
|
30
30
|
private dispatchHandler;
|
|
31
31
|
private onCloseLinkPicker;
|
|
32
32
|
private getSelectionText;
|
|
33
|
-
render():
|
|
33
|
+
render(): JSX.Element;
|
|
34
34
|
private onConfigureProviders;
|
|
35
|
-
renderCreateLinkDialog():
|
|
35
|
+
renderCreateLinkDialog(): JSX.Element;
|
|
36
36
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"name":"omniaWebpackJsonp['d60fa82a-129a-41a9-93ce-d784dcb217b0']['73f0116c-212c-4912-b780-d8df4ea3d78b']","content":{"./node_modules/@omnia/wcm/models/index.js":{"id":"0044f6fa-6f28-4130-9b07-649c0ab06fca","buildMeta":{"exportsType":"namespace"},"expo.js":["AccordionBlockStyles","ActionButtonLinkHandlerTargets","ActionButtonType","ActivityActionTypes","ActivityFeedScopes","ActivityType","ApplySettingsChangedStatus","ApprovalType","AutomaticPageCreationStatusType","BannerBlockStyles","BannerLayout","BreadcrumbBlockStyles","BuildInContentBlockTextStyleFormatting","ButtonGroupings","CalendarRollupBlockListViewSettingsStyles","CalendarRollupBlockSettingsStyles","CalendarRollupBlockStyles","CalendarRollupEnums","CalendarType","CardTypes","ChannelCardViewStyles","ChannelRollupBlockAdministrationViewStyles","ChannelRollupBlockSettingsFilterTabStyles","ChannelRollupBlockSettingsGeneralTabStyles","ChannelRollupBlockStyles","ChildStructureType","ColleagueDialogContentStyles","CommentSorting","CommunityAppLayoutDefinition","CommunityPageActivityStyles","CommunityStyles","Constants","ContentBlockModes","ContentBlockStyles","CurrentNavigationBlockSettingsStyles","CurrentNavigationBlockStyles","CurrentNavigationStatus","CurrentPageStatus","DailyRecurrenceTypeEnums","DeletedPageDialogStyles","DigitalSignageConstants","DigitalSignageManifests","DigitalSignageQuerySettingsType","DigitalSigningScreenType","Directions","DocumentTypes","DynamicRollerSizes","DynamicRollerTypes","EnterpriseGlossaryPageInformationProviderStyles","EnterprisePropertiesBlockDateTimeModes","EnterprisePropertiesRichTextSettings","EnterprisePropertyDataTypeProvider","EnterprisePropertyDocumentProviderProperty","EventAttedeeType","EventCloneDialogContentStyles","EventParticipantCounterBlockStyles","EventParticipantListEnums","EventParticipantListStyles","EventParticipantListViewStyles","FileUploaderWCMPageContext","HtmlScriptBlockStyle","InfoScreenConstants","InfoScreenManifests","InfoScreenViewIdConstants","ItemQueryEnums","LabelPositions","LinkPickerStyle","MediaBlockStyles","MediaPickerStorageProviderPageContext","MediaPickerStorageProviderPageCreationContext","MediaPickerStorageProviderPageReadContext","MediaPickerStorageProviderWCMChannelAdminContext","MegaMenuStyles","MobileNavigationNodeStyles","MobileNavigationStyles","MonthlyRecurrenceTypeEnums","MovePageCollectionDialogStyles","NavigationDataType","NavigationNodeQuery","NavigationNodeStyles","NavigationNodeType","NavigationRenders","NodeId","OutlookCalendarType","PageBuiltInColumnConstants","PageCalendarViewMode","PageCollectionTopic","PageDataType","PageFeedbackBlockStyles","PageFeedbackDialogStyles","PageFeedbacksStyles","PageFile","PageId","PageItemTemplateStyles","PagePickerNodeStyles","PagePickerProviderStyles","PagePropertiesBlockAdvancedStyles","PagePropertiesBlockStyles","PageRollUpDialogViewStyles","PageRollupBlockCalendarViewSettingsStyles","PageRollupBlockCalendarViewStyles","PageRollupBlockCardViewSettingsStyles","PageRollupBlockListViewSettingsStyles","PageRollupBlockListViewViewStyles","PageRollupBlockListingWithImageViewViewStyles","PageRollupBlockRollerViewViewStyles","PageRollupBlockSettingsFilterTabStyles","PageRollupBlockSettingsGeneralTabStyles","PageRollupBlockStyles","PageRollupConstants","PageRollupEnums","PageRollupFilterEngineContextPropertyTypes","PageRollupListViewSettingsStyles","PageRollupListViewStyles","PageRollupListingPickedPagesStyles","PageRollupNavigationViewStyles","PageRollupNewsletterViewStyles","PageRollupPickedPagesDialogStyles","PageRollupUniqueUsersDetailsStyles","PageTopic","PagesDashboardSettingsStyles","PagingTypes","Parameters","ParticipantType","PendingFileStatus","PublishingAppArchiveSettingsRouteProperty","PublishingAppBootRouteProperty","PublishingAppLayoutDefinition","PublishingAppReuseContentSettingsRouteProperty","PublishingAppTopic","PublishingChannelId","PublishingChannelTopic","PublishingStatus","QrCodeStyles","RecurrenceTypeEnums","RelatedLinkAddHeadingDialogStyles","RelatedLinkBlockStyles","RelatedLinkEditFormStyles","ReportTypesEnum","ResourceEvaluators","ReusablePageStatusType","ReuseContentMode","RoleDefinitions","RootService","RssReaderBlockLeftImageViewStyles","RssReaderBlockNoImageViewStyles","RssReaderBlockStyles","RuleStatus","RuleTypes","ScheduleEndTypeEnums","SearchTemplateOmniaPageStyles","SelectedPageItemStyles","SharepointPageTemplateStyles","SignOffRequestBlockStyles","SignOffRequestConstants","SortByProperties","StatisticsPerPageDataSourcesEnum","TagTopic","TaxonomyNavigationStyles","TaxonomyTopic","TopicInformationType","TopicType","UserTopic","ValidationArchivePageResult","VariationId","VariationInputStyles","VariationsRouteProperty","VersionId","VersionType","VersionUpdationMode","VideoType","WCMEnterpriseProperties","WCMFxLocalization","WCMNavigationDataTypes","WCMPageIdCustomPropertyName","WCMPageTypes","WCMReaderContext","WcmAppDefaultResourceUrl","WcmEditorDynamicNavigationRouteProperty","WcmExtension","WcmGroupManifests","WcmLayoutProvider","WcmPropertyDefaultBooleanValues","WcmPropertyDefaultValues","WcmResourceManifests","WcmService","WcmWebComponentManifests","WebBrowserDigitalSigningScreenStepType","WeekOfMonthEnums","WorkplaceService","YammerProperties","layoutItemAction"]}}}
|
|
1
|
+
{"name":"omniaWebpackJsonp['d60fa82a-129a-41a9-93ce-d784dcb217b0']['73f0116c-212c-4912-b780-d8df4ea3d78b']","content":{"./node_modules/@omnia/wcm/models/index.js":{"id":"0044f6fa-6f28-4130-9b07-649c0ab06fca","buildMeta":{"exportsType":"namespace"},"expo.js":["AccordionBlockStyles","ActionButtonLinkHandlerTargets","ActionButtonType","ActivityActionTypes","ActivityFeedScopes","ActivityType","ApplySettingsChangedStatus","ApprovalType","AutomaticPageCreationStatusType","BannerBlockStyles","BannerLayout","BreadcrumbBlockStyles","BuildInContentBlockTextStyleFormatting","ButtonGroupings","CalendarRollupBlockListViewSettingsStyles","CalendarRollupBlockSettingsStyles","CalendarRollupBlockStyles","CalendarRollupEnums","CalendarType","CardTypes","ChannelCardViewStyles","ChannelRollupBlockAdministrationViewStyles","ChannelRollupBlockSettingsFilterTabStyles","ChannelRollupBlockSettingsGeneralTabStyles","ChannelRollupBlockStyles","ChildStructureType","ColleagueDialogContentStyles","CommentSorting","CommunityAppLayoutDefinition","CommunityPageActivityStyles","CommunityStyles","Constants","ContentBlockModes","ContentBlockStyles","CurrentNavigationBlockSettingsStyles","CurrentNavigationBlockStyles","CurrentNavigationStatus","CurrentPageStatus","DailyRecurrenceTypeEnums","DeletedPageDialogStyles","DigitalSignageConstants","DigitalSignageManifests","DigitalSignageQuerySettingsType","DigitalSigningScreenType","Directions","DocumentTypes","DynamicRollerSizes","DynamicRollerTypes","EnterpriseGlossaryPageInformationProviderStyles","EnterprisePropertiesBlockDateTimeModes","EnterprisePropertiesRichTextSettings","EnterprisePropertyDataTypeProvider","EnterprisePropertyDocumentProviderProperty","EventAttedeeType","EventCloneDialogContentStyles","EventParticipantCounterBlockStyles","EventParticipantListEnums","EventParticipantListStyles","EventParticipantListViewStyles","FileUploaderWCMPageContext","HtmlScriptBlockStyle","InfoScreenConstants","InfoScreenManifests","InfoScreenViewIdConstants","ItemQueryEnums","LabelPositions","LinkPickerStyle","MediaBlockStyles","MediaPickerStorageProviderPageContext","MediaPickerStorageProviderPageCreationContext","MediaPickerStorageProviderPageReadContext","MediaPickerStorageProviderWCMChannelAdminContext","MegaMenuStyles","MobileNavigationNodeStyles","MobileNavigationStyles","MonthlyRecurrenceTypeEnums","MovePageCollectionDialogStyles","NavigationDataType","NavigationNodeQuery","NavigationNodeStyles","NavigationNodeType","NavigationRenders","NodeId","OutlookCalendarType","PageBuiltInColumnConstants","PageCalendarViewMode","PageCollectionTopic","PageDataType","PageFeedbackBlockStyles","PageFeedbackDialogStyles","PageFeedbacksStyles","PageFile","PageId","PageItemTemplateStyles","PagePickerNodeStyles","PagePickerProviderStyles","PagePropertiesBlockAdvancedStyles","PagePropertiesBlockStyles","PageRollUpDialogViewStyles","PageRollupBlockCalendarViewSettingsStyles","PageRollupBlockCalendarViewStyles","PageRollupBlockCardViewSettingsStyles","PageRollupBlockListViewSettingsStyles","PageRollupBlockListViewViewStyles","PageRollupBlockListingWithImageViewViewStyles","PageRollupBlockRollerViewViewStyles","PageRollupBlockSettingsFilterTabStyles","PageRollupBlockSettingsGeneralTabStyles","PageRollupBlockStyles","PageRollupConstants","PageRollupEnums","PageRollupFilterEngineContextPropertyTypes","PageRollupListViewSettingsStyles","PageRollupListViewStyles","PageRollupListingPickedPagesStyles","PageRollupNavigationViewStyles","PageRollupNewsletterViewStyles","PageRollupPickedPagesDialogStyles","PageRollupUniqueUsersDetailsStyles","PageTopic","PagesDashboardSettingsStyles","PagingTypes","Parameters","ParticipantType","PendingFileStatus","PublishingAppArchiveSettingsRouteProperty","PublishingAppBootRouteProperty","PublishingAppLayoutDefinition","PublishingAppReuseContentSettingsRouteProperty","PublishingAppTopic","PublishingChannelId","PublishingChannelTopic","PublishingStatus","QrCodeStyles","RecurrenceTypeEnums","RelatedLinkAddHeadingDialogStyles","RelatedLinkBlockStyles","RelatedLinkEditFormStyles","ReportTypesEnum","ResourceEvaluators","ReusablePageStatusType","ReuseContentMode","RoleDefinitions","RootService","RssReaderBlockLeftImageViewStyles","RssReaderBlockNoImageViewStyles","RssReaderBlockStyles","RuleStatus","RuleTypes","ScheduleEndTypeEnums","SearchTemplateOmniaPageStyles","SelectedPageItemStyles","SharepointPageTemplateStyles","SignOffRequestBlockStyles","SignOffRequestConstants","SortByProperties","StatisticsPerPageDataSourcesEnum","TagTopic","TaxonomyNavigationStyles","TaxonomyTopic","TopicInformationType","TopicType","UserTopic","ValidationArchivePageResult","VariationId","VariationInputStyles","VariationsRouteProperty","VersionId","VersionType","VersionUpdationMode","VideoType","WCMEnterpriseProperties","WCMFxLocalization","WCMGlossary","WCMGlossaryType","WCMGlossaryVariation","WCMNavigationDataTypes","WCMPageIdCustomPropertyName","WCMPageTypes","WCMReaderContext","WcmAppDefaultResourceUrl","WcmEditorDynamicNavigationRouteProperty","WcmExtension","WcmGroupManifests","WcmLayoutProvider","WcmPropertyDefaultBooleanValues","WcmPropertyDefaultValues","WcmResourceManifests","WcmService","WcmWebComponentManifests","WebBrowserDigitalSigningScreenStepType","WeekOfMonthEnums","WorkplaceService","YammerProperties","layoutItemAction"]}}}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"name":"omniaWebpackJsonp['d60fa82a-129a-41a9-93ce-d784dcb217b0']['a41d1723-10ca-4597-9c40-fd4f511ae2ae']","content":{"./node_modules/@omnia/wcm/internal/index.js":{"id":"./node_modules/@omnia/wcm/internal/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["ActiveUserDashboardQueryTypes","BreadcrumNodeTypes","NavigationTitleHelperService","PageDashboardDetail","PageTypesFilterValue","PagesDashboardDetailResult","PagesDashboardMetricQuery","PagesDashboardQueryTypes","PagesDetailDashboardQuery","PublishingAppsFilterValue","SharepointPageService","SharepointPageStore","SharepointSynchronizedEventStatus","SynchronizedResourcesStatus","UserPropertiesFilterValue","YammerIntegrationStore"]},"./node_modules/@omnia/wcm/messaging/InternalWcmTopics.js":{"id":"./node_modules/@omnia/wcm/messaging/internalwcmtopics.js","buildMeta":{"exportsType":"namespace"},"expo.js":["InternalWcmTopics"]},"./node_modules/@omnia/wcm/stores/PageRollupStoreHelper.js":{"id":"./node_modules/@omnia/wcm/stores/pagerollupstorehelper.js","buildMeta":{"exportsType":"namespace"},"expo.js":["BatchQueryRegistration","EnsureMigrateBlockData","FilterManager","PageRollupConfigurationFactory","PageRollupStoreHelper"]},"./node_modules/@omnia/wcm/index.js":{"id":"dd7f30f1-7b1b-47a5-acfb-c173d2fcb1f3","buildMeta":{"exportsType":"namespace"},"expo.js":["ActivityActionFactory","AppInfoStore","AutomaticPageCreationService","BASE_URL","BackgroundImageHelper","BreadcrumbStore","BreakpointStore","BuiltInActionButtonHandlers","CURRENT_DATE","CalendarConstants","CalendarService","ChannelCategoriesStore","ChannelManagementService","ChannelManagementStore","CommunityRules","CreatePageFormStore","CurrentEventStore","CurrentNavigationStore","CurrentPageStore","DisplayBreakPointFactory","DocumentService","EditingDisplayRules","EmailSettingsKey","EnterprisePropertyInternalNames","EventParticipantListElementName","EventService","GovernanceDashboard","IconRules","ItemQueryHelper","LayoutDataParentPageId","LayoutHelper","LayoutItemsTranslator","LinkPickerProviderMsg","LinkPickerProviders","LinkPickerStore","MaxIntNumber","NavigationNodeHelper","NavigationService","NavigationStore","NewsletterService","OmniaWCMPageBody","OutlookEvent","PageBlockPropertyStore","PageFactory","PageHiddenService","PageNavigationNodeHelper","PagePermissionService","PageQueryService","PageRedirectHelper","PageRollupFilterEngineContext","PageRollupIndexedDB","PageRollupListView","PageRollupStore","PageService","PageStatisticsService","PageStatisticsStore","PageVariationHelper","PageVersion","PagesStore","ParticipantService","ParticipantsFields","PublishingAppDefaultScrollElementClass","PublishingAppInfoStore","PublishingAppUniqueModelName","PublishingChannelCategoriesService","PublishingRuleService","PublishingRuleStore","QueryableProperties","ReusablePageService","TargetingStore","ThemingRules","TimeFormat","TopicActivityService","TopicPrefixConstants","Topics","TopicsActivityStore","VariationRules","VariationService","VariationStore","VersionEnterpriseProperties","VersionPropertyBag","VisitedPageKeyPrefix","WCMPageKeyPrefix","WCMPageVersionStateException","WcmContext","WcmRouter","YammerService"]}}}
|
|
1
|
+
{"name":"omniaWebpackJsonp['d60fa82a-129a-41a9-93ce-d784dcb217b0']['a41d1723-10ca-4597-9c40-fd4f511ae2ae']","content":{"./node_modules/@omnia/wcm/internal/index.js":{"id":"./node_modules/@omnia/wcm/internal/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["ActiveUserDashboardQueryTypes","BreadcrumNodeTypes","NavigationTitleHelperService","PageDashboardDetail","PageTypesFilterValue","PagesDashboardDetailResult","PagesDashboardMetricQuery","PagesDashboardQueryTypes","PagesDetailDashboardQuery","PublishingAppsFilterValue","SharepointPageService","SharepointPageStore","SharepointSynchronizedEventStatus","SynchronizedResourcesStatus","UserPropertiesFilterValue","YammerIntegrationStore"]},"./node_modules/@omnia/wcm/messaging/InternalWcmTopics.js":{"id":"./node_modules/@omnia/wcm/messaging/internalwcmtopics.js","buildMeta":{"exportsType":"namespace"},"expo.js":["InternalWcmTopics"]},"./node_modules/@omnia/wcm/stores/PageRollupStoreHelper.js":{"id":"./node_modules/@omnia/wcm/stores/pagerollupstorehelper.js","buildMeta":{"exportsType":"namespace"},"expo.js":["BatchQueryRegistration","EnsureMigrateBlockData","FilterManager","PageRollupConfigurationFactory","PageRollupStoreHelper"]},"./node_modules/@omnia/wcm/index.js":{"id":"dd7f30f1-7b1b-47a5-acfb-c173d2fcb1f3","buildMeta":{"exportsType":"namespace"},"expo.js":["ActivityActionFactory","AppInfoStore","AutomaticPageCreationService","BASE_URL","BackgroundImageHelper","BreadcrumbStore","BreakpointStore","BuiltInActionButtonHandlers","CURRENT_DATE","CalendarConstants","CalendarService","ChannelCategoriesStore","ChannelManagementService","ChannelManagementStore","CommunityRules","CreatePageFormStore","CurrentEventStore","CurrentNavigationStore","CurrentPageStore","DisplayBreakPointFactory","DocumentService","EditingDisplayRules","EmailSettingsKey","EnterprisePropertyInternalNames","EventParticipantListElementName","EventService","GovernanceDashboard","IconRules","ItemQueryHelper","LayoutDataParentPageId","LayoutHelper","LayoutItemsTranslator","LinkPickerProviderMsg","LinkPickerProviders","LinkPickerStore","MaxIntNumber","NavigationNodeHelper","NavigationService","NavigationStore","NewsletterService","OmniaWCMPageBody","OutlookEvent","PageBlockPropertyStore","PageFactory","PageHiddenService","PageNavigationNodeHelper","PagePermissionService","PageQueryService","PageRedirectHelper","PageRollupFilterEngineContext","PageRollupIndexedDB","PageRollupListView","PageRollupStore","PageService","PageStatisticsService","PageStatisticsStore","PageVariationHelper","PageVersion","PagesStore","ParticipantService","ParticipantsFields","PublishingAppDefaultScrollElementClass","PublishingAppInfoStore","PublishingAppUniqueModelName","PublishingChannelCategoriesService","PublishingRuleService","PublishingRuleStore","QueryableProperties","ReusablePageService","SessionUrlHistoryStore","TargetingStore","ThemingRules","TimeFormat","TopicActivityService","TopicPrefixConstants","Topics","TopicsActivityStore","UrlStateService","VariationRules","VariationService","VariationStore","VersionEnterpriseProperties","VersionPropertyBag","VisitedPageKeyPrefix","WCMPageKeyPrefix","WCMPageVersionStateException","WcmContext","WcmRouter","YammerService"]}}}
|
|
@@ -4,7 +4,6 @@ exports.TypedProperties = void 0;
|
|
|
4
4
|
const models_1 = require("@omnia/wcm/models");
|
|
5
5
|
class TypedProperties {
|
|
6
6
|
}
|
|
7
|
-
exports.TypedProperties = TypedProperties;
|
|
8
7
|
TypedProperties.RouteProperties = class {
|
|
9
8
|
static get publishingAppId() {
|
|
10
9
|
return {
|
|
@@ -13,3 +12,4 @@ TypedProperties.RouteProperties = class {
|
|
|
13
12
|
};
|
|
14
13
|
}
|
|
15
14
|
};
|
|
15
|
+
exports.TypedProperties = TypedProperties;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
utf8
|
package/package.json
CHANGED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"wcm-buttonlink-settings":["settingsKey"],"wcm-banner-block-settings":["settingsKey"],"wcm-banner-block-edit":["content","settings","onSave","onClose"],"wcm-breadcrumb-settings":["settingsKey"],"owcm-calendar-rollup-settings":["settingsKey"],"owcm-calendar-rollup-dialog":["close"],"owcm-channel-rollup-settings":["settingsKey"],"omx-em-colleague-dialog-content":["onSave","participant","onClose","onSelectStepPassed"],"wcm-content-block-settings-breakpoint":["settingsKey","breakPointId"],"wcm-content-block-settings":["settingsKey"],"wcm-content-block-translation-comparer":["settingsKey","onShowScrollChange","onUpdateText"],"owcm-digitalsignage-screen-renderer":["data"],"omx-em-event-clone-dialog-content":["onSave","eventDetail","onClose"],"wcm-html-script-block-content-editor":["content","close"],"info-screen-button":["data"],"info-screen-renderer":["data"],"wcm-link-picker":["title","onClosed","onSaved","styles","providerFilter","selectedItem"],"wcm-media-block-settings":["settingsKey"],"wcm-page-properties-settings":["settingsKey"],"owcm-page-rollup-settings-breakpoint":["breakPointId"],"owcm-channel-filter":["valueBind"],"owcm-page-rollup-settings":["settingsKey"],"owcm-pagetype-filter":["valueBind"],"owcm-picked-pages-dialog":["dialogModel","onSaved","close","allowToSelectPageCollectionNode"],"wcm-backgroundselector":["settings"],"wcm-invite-coauthors":["styles","close"],"wcm-mega-menu-default-navigation":["currentSettings"],"wcm-block-mega-menu-settings":["settingsKey"],"wcm-mega-menu-settings":["settingsKey","currentSettings","onUpdateSettings"],"wcm-move-node":["node","onClosed","onSaved","currentPageCollection"],"wcm-sp-sync-settings":["settings","onChange"],"wcm-sp-sync-tenant-settings":["settings","onChange"],"wcm-sp-sync-error":["onClosed","content"],"wcm-sp-sync-warning":["onClosed"],"wcm-related-link-settings":["settingsKey"],"wcm-link-heading":["linkData"],"wcm-rssreader-block-settings":["settingsKey"],"owcm-activity-feed":["styles"],"owcm-activity-feed-settings":["settingsKey"],"owcm-page-feedbacks":["feedbacks","columns"],"owcm-page-feedbacks-dialog":["pageId","closeCallback"],"wcm-page-feedback":["settingsKey"],"owcm-page-comment-like-settings":["settingsKey"],"owcm-page-comment-like-view":["settings","topicId"],"wcm-variation-input":["valueBind","requiredWithValidator","onValueChanged"],"wcm-variation-picker":["items","valueBind","onValueChanged"],"wcm-variation-selector-settings":["settingsKey"]}
|