@omnia/wcm 8.0.4-dev → 8.0.5-dev

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.
Files changed (29) hide show
  1. package/internal-do-not-import-from-here/core/loc/CoreLocalization.d.ts +4 -0
  2. package/internal-do-not-import-from-here/fx/index.d.ts +1 -0
  3. package/internal-do-not-import-from-here/fx/models/Constants.d.ts +2 -0
  4. package/internal-do-not-import-from-here/fx/models/Constants.js +6 -0
  5. package/internal-do-not-import-from-here/fx/models/components/CurrentNavigationBlock.d.ts +1 -1
  6. package/internal-do-not-import-from-here/fx/models/components/CurrentNavigationBlockStyles.d.ts +3 -8
  7. package/internal-do-not-import-from-here/fx/models/components/PageRollupBlock.d.ts +14 -1
  8. package/internal-do-not-import-from-here/fx/models/components/PageRollupBlock.js +6 -0
  9. package/internal-do-not-import-from-here/fx/models/index.d.ts +0 -1
  10. package/internal-do-not-import-from-here/fx/models/index.js +0 -1
  11. package/internal-do-not-import-from-here/fx/models/pagequery/PageRollupEnums.d.ts +2 -1
  12. package/internal-do-not-import-from-here/fx/models/pagequery/PageRollupEnums.js +1 -0
  13. package/internal-do-not-import-from-here/fx/shared/PageRollupStoreHelper.d.ts +4 -1
  14. package/internal-do-not-import-from-here/fx/ux/MediaPickerProviderStorageWCMContext.d.ts +22 -0
  15. package/internal-do-not-import-from-here/fx/ux/index.d.ts +2 -0
  16. package/internal-do-not-import-from-here/fx/ux/use/UseWcmIcons.d.ts +17 -0
  17. package/internal-do-not-import-from-here/fx/ux/use/index.d.ts +1 -0
  18. package/internal-do-not-import-from-here/tooling.output.json +1 -1
  19. package/package.json +1 -1
  20. package/internal-do-not-import-from-here/fx/models/mediapicker/MediaPickerProviderContext.d.ts +0 -13
  21. package/internal-do-not-import-from-here/fx/models/mediapicker/MediaPickerProviderContext.js +0 -22
  22. package/internal-do-not-import-from-here/fx/models/mediapicker/MediaPickerStorageProviderPageContext.d.ts +0 -8
  23. package/internal-do-not-import-from-here/fx/models/mediapicker/MediaPickerStorageProviderPageContext.js +0 -13
  24. package/internal-do-not-import-from-here/fx/models/mediapicker/MediaPickerStorageProviderPageCreationContext.d.ts +0 -9
  25. package/internal-do-not-import-from-here/fx/models/mediapicker/MediaPickerStorageProviderPageCreationContext.js +0 -14
  26. package/internal-do-not-import-from-here/fx/models/mediapicker/MediaPickerStorageProviderPageReadContext.d.ts +0 -8
  27. package/internal-do-not-import-from-here/fx/models/mediapicker/MediaPickerStorageProviderPageReadContext.js +0 -13
  28. package/internal-do-not-import-from-here/fx/models/mediapicker/index.d.ts +0 -4
  29. package/internal-do-not-import-from-here/fx/models/mediapicker/index.js +0 -7
@@ -126,6 +126,10 @@ export declare module WCMCoreLocalization {
126
126
  OneMonthFromToday: string;
127
127
  EarlierThanToday: string;
128
128
  LaterThanToday: string;
129
+ Custom: string;
130
+ Today: string;
131
+ From: string;
132
+ To: string;
129
133
  };
130
134
  TaxonomyFilterTypes: {
131
135
  FixedValue: string;
@@ -9,5 +9,6 @@ export * from "./contexts";
9
9
  export * from "./messaging";
10
10
  export * from "./constants";
11
11
  export * from "./rules";
12
+ export * from "./ux";
12
13
  export * from "./pages";
13
14
  export * from "./filterengine";
@@ -28,6 +28,8 @@ export declare const PageRollupConstants: {
28
28
  readonly DefaultPageSize: number;
29
29
  readonly channelIdInternalName: string;
30
30
  readonly defaultChannelIdInternalName: string;
31
+ readonly createdAtInternalName: string;
32
+ readonly createdByInternalName: string;
31
33
  readonly FilterByCurrentUserSubscription: string;
32
34
  readonly pageHitsCurrentUserInternalName: string;
33
35
  readonly pageHitsAllUsersInternalName: string;
@@ -89,6 +89,12 @@ exports.PageRollupConstants = {
89
89
  get defaultChannelIdInternalName() {
90
90
  return "PDefaultChannelId";
91
91
  },
92
+ get createdAtInternalName() {
93
+ return "PCreatedAt";
94
+ },
95
+ get createdByInternalName() {
96
+ return "PCreatedBy";
97
+ },
92
98
  get FilterByCurrentUserSubscription() {
93
99
  return "CurrentUserSubscription";
94
100
  },
@@ -3,6 +3,6 @@ export interface CurrentNavigationBlockSettings {
3
3
  startLevel: number;
4
4
  getParentSiblings: boolean;
5
5
  spacing?: SpacingSettings;
6
- levelIndentation: number;
6
+ levelIndentation?: SpacingSettings;
7
7
  blockTitle: string;
8
8
  }
@@ -1,16 +1,11 @@
1
1
  import { types } from "typestyle";
2
- import { SpacingSettings, Theming } from "@omnia/fx-models";
2
+ import { useColorSchemaStore } from "@omnia/fx/ux";
3
+ import { SpacingSettings } from "@omnia/fx-models";
3
4
  export declare const CurrentNavigationBlockStyles: {
4
- wrapper: types.NestedCSSProperties;
5
- headerWrapper: (level: number, indentation: number, isRoutePath: boolean, theming: Theming, padding: SpacingSettings, rtl: boolean) => types.NestedCSSProperties;
6
- rightIcon: types.NestedCSSProperties;
5
+ headerWrapper: (level: number, indentation: number, isRoutePath: boolean, spacingSettings: SpacingSettings, colors: ReturnType<typeof useColorSchemaStore>) => types.NestedCSSProperties;
7
6
  arrowBtnCollapsedDefault: types.NestedCSSProperties;
8
7
  arrowBtnExpanded: types.NestedCSSProperties;
9
- title: types.NestedCSSProperties;
10
- textOverflow: types.NestedCSSProperties;
11
8
  content: types.NestedCSSProperties;
12
- contentHide: types.NestedCSSProperties;
13
- textEllipsis: types.NestedCSSProperties;
14
9
  };
15
10
  export declare const CurrentNavigationBlockSettingsStyles: {
16
11
  levelIndentationIconWrapper?: types.NestedCSSProperties;
@@ -1,4 +1,4 @@
1
- import { BaseFilterEngineProperty, FilterEngineSettings, GuidValue, Identity, IIcon, Language, MultilingualString, PropertyIndexedType, RollupOtherTypes, SpacingSettings, Tag, TypedFilterEnginePropertyOutput, UserPickingType } from "@omnia/fx-models";
1
+ import { BaseFilterEngineProperty, FilterEngineSettings, GuidValue, Identity, IIcon, Language, MultilingualString, PropertyIndexedType, RollupOtherTypes, SpacingSettings, Tag, TimePeriodTypes, TypedFilterEnginePropertyOutput, UserPickingType } from "@omnia/fx-models";
2
2
  import { Page, PageCalendarViewMode, PageDialogPropertiesMapping, PageItemNode, PageRollupEnums, PagingTypes, TaxonomyQueryFilter, TaxonomyUIFilter } from "..";
3
3
  import { PublishingChannelId } from "../channels";
4
4
  import { PageId } from "../pages";
@@ -58,8 +58,21 @@ export interface PageRollupPersonPropertyFilterValue extends PageRollupPropertyF
58
58
  value: Array<Identity>;
59
59
  filterSelection: UserPickingType;
60
60
  }
61
+ export declare enum CustomDateOperator {
62
+ Add = 0,
63
+ Subtract = 1
64
+ }
65
+ export interface PageRollupDatePropertyFilterCustomValue {
66
+ fromTodayValue: number;
67
+ operator: CustomDateOperator;
68
+ unit: TimePeriodTypes;
69
+ }
61
70
  export interface PageRollupDatePropertyFilterValue extends PageRollupPropertyFilterValue {
62
71
  value: PageRollupEnums.DatePeriods;
72
+ customValueDetails?: {
73
+ from: PageRollupDatePropertyFilterCustomValue;
74
+ to: PageRollupDatePropertyFilterCustomValue;
75
+ };
63
76
  }
64
77
  export interface PageRollupTagPropertyFilterValue extends PageRollupPropertyFilterValue {
65
78
  value: Array<Tag>;
@@ -1,2 +1,8 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CustomDateOperator = void 0;
4
+ var CustomDateOperator;
5
+ (function (CustomDateOperator) {
6
+ CustomDateOperator[CustomDateOperator["Add"] = 0] = "Add";
7
+ CustomDateOperator[CustomDateOperator["Subtract"] = 1] = "Subtract";
8
+ })(CustomDateOperator = exports.CustomDateOperator || (exports.CustomDateOperator = {}));
@@ -27,7 +27,6 @@ export * from "./governancedashboard";
27
27
  export * from "./newsletter";
28
28
  export * from "./eventmanagement";
29
29
  export * from "./automaticpagecreationrequest";
30
- export * from "./mediapicker";
31
30
  export * from "./enterpriseglossary";
32
31
  export * from "./linkpicker";
33
32
  export * from "./publishinglayout";
@@ -31,7 +31,6 @@ tslib_1.__exportStar(require("./governancedashboard"), exports);
31
31
  tslib_1.__exportStar(require("./newsletter"), exports);
32
32
  tslib_1.__exportStar(require("./eventmanagement"), exports);
33
33
  tslib_1.__exportStar(require("./automaticpagecreationrequest"), exports);
34
- tslib_1.__exportStar(require("./mediapicker"), exports);
35
34
  tslib_1.__exportStar(require("./enterpriseglossary"), exports);
36
35
  tslib_1.__exportStar(require("./linkpicker"), exports);
37
36
  tslib_1.__exportStar(require("./publishinglayout"), exports);
@@ -4,7 +4,8 @@ export declare module PageRollupEnums {
4
4
  TwoWeeksFromToday = 2,
5
5
  OneMonthFromToday = 3,
6
6
  LaterThanToday = 4,
7
- EarlierThanToday = 5
7
+ EarlierThanToday = 5,
8
+ Custom = 6
8
9
  }
9
10
  enum FilterTypes {
10
11
  FixedValue = 1,
@@ -10,6 +10,7 @@ var PageRollupEnums;
10
10
  DatePeriods[DatePeriods["OneMonthFromToday"] = 3] = "OneMonthFromToday";
11
11
  DatePeriods[DatePeriods["LaterThanToday"] = 4] = "LaterThanToday";
12
12
  DatePeriods[DatePeriods["EarlierThanToday"] = 5] = "EarlierThanToday";
13
+ DatePeriods[DatePeriods["Custom"] = 6] = "Custom";
13
14
  })(DatePeriods = PageRollupEnums.DatePeriods || (PageRollupEnums.DatePeriods = {}));
14
15
  let FilterTypes;
15
16
  (function (FilterTypes) {
@@ -3,7 +3,7 @@ import { EnterprisePropertyDefinition, FilterEngineSearchBoxSettings, GuidValue,
3
3
  import { TermStore } from "@omnia/fx-sp";
4
4
  import { EnterpriseGlossaryStore, MultilingualStore } from "@omnia/fx/stores";
5
5
  import { FilterEngineHandler, IBlockInstanceExtends } from "@omnia/fx/ux";
6
- import { BatchQueryPages, BatchQueryPagesResult, NormalPageRollupPagingQuery, PageCollectionSelection, PageDialogData, PageDialogPropertiesMapping, PageItemNode, PageQuery, PageRollupBlockProperty, PageRollupBlockSettings, PageRollupEnums, PageRollupPropertyFilter, PageRollupUiFilter, QueryFilter, QueryOrder, ReactivePageBlockProperty, VariationId, VariationQuery, UIQueryFilter } from "../../fx/models";
6
+ import { BatchQueryPages, BatchQueryPagesResult, NormalPageRollupPagingQuery, PageCollectionSelection, PageDialogData, PageDialogPropertiesMapping, PageItemNode, PageQuery, PageRollupBlockProperty, PageRollupBlockSettings, PageRollupEnums, PageRollupPropertyFilter, PageRollupUiFilter, QueryFilter, QueryOrder, ReactivePageBlockProperty, VariationId, VariationQuery, UIQueryFilter, PageRollupDatePropertyFilterCustomValue } from "../../fx/models";
7
7
  interface BlockPageRollupInstanceExtends extends IBlockInstanceExtends<PageRollupBlockSettings> {
8
8
  uiQueryFilters?: QueryFilter[];
9
9
  orderBy?: Array<QueryOrder>;
@@ -65,6 +65,7 @@ declare class InternalPageRollupStoreHelper {
65
65
  updateQuery(blockInstance: BlockPageRollupInstanceExtends, newSettings: PageRollupBlockSettings, uiQueryFilter: UIQueryFilter, orderBy?: Array<QueryOrder>, blockProperty?: ReactivePageBlockProperty<PageRollupBlockProperty>, forceExecuteQuery?: boolean, clientCaching?: boolean, showMetric?: boolean): Promise<void>;
66
66
  getRollupId(blockInstance: IBlockInstance<PageRollupBlockSettings>): string;
67
67
  setLoadedPageRollups(pageRollupQueryId: string, isDestroyed: boolean): void;
68
+ private checkPagingStateHasChanged;
68
69
  private getPagingQuery;
69
70
  private setExecutingQueriesParrallel;
70
71
  private setExecutedQueriesParrallel;
@@ -80,6 +81,7 @@ declare class InternalPageRollupStoreHelper {
80
81
  private getStartNodePromise;
81
82
  private ensureValidCalendarDateProp;
82
83
  private generateCalendarFilter;
84
+ parseCustomDateFilter(value: PageRollupDatePropertyFilterCustomValue): Date;
83
85
  generateFilters(settings: PageRollupBlockSettings, filters?: Array<PageRollupPropertyFilter>): Array<QueryFilter>;
84
86
  private isProcessProperty;
85
87
  private getProcessFilters;
@@ -156,6 +158,7 @@ export declare class PageRollupStoreHelper {
156
158
  setDestroyedPageRollups(pageRollupQueryId: string): void;
157
159
  getBatchQueriesData(batchQueries: Array<BatchQueryPages>, queryWithPageTypes: Array<string>): Promise<BatchQueryPagesResult>;
158
160
  needToLoadPageTypeInView(settings: PageRollupBlockSettings, internalNames: Array<string>): boolean;
161
+ parseCustomDateFilter(value: PageRollupDatePropertyFilterCustomValue): Date;
159
162
  }
160
163
  export declare class FilterManager {
161
164
  private static targetingPropertyStore;
@@ -0,0 +1,22 @@
1
+ import { Guid, GuidValue } from "@omnia/fx-models";
2
+ import { PageId } from "../models";
3
+ export declare const mediaPickerStorageProviderWCMChannelAdminContext: () => {
4
+ omniaServiceId: Guid;
5
+ storageProviderContextId: Guid;
6
+ };
7
+ export declare const mediaPickerStorageProviderPageContext: (param1: PageId) => {
8
+ omniaServiceId: Guid;
9
+ storageProviderContextId: Guid;
10
+ pageId: PageId;
11
+ };
12
+ export declare const mediaPickerStorageProviderPageCreationContext: (param1: PageId, param2: GuidValue) => {
13
+ omniaServiceId: Guid;
14
+ storageProviderContextId: Guid;
15
+ parentPageId: PageId;
16
+ publishingAppId: GuidValue;
17
+ };
18
+ export declare const mediaPickerStorageProviderPageReadContext: (param1: PageId) => {
19
+ omniaServiceId: Guid;
20
+ storageProviderContextId: Guid;
21
+ pageId: PageId;
22
+ };
@@ -0,0 +1,2 @@
1
+ export * from "./use";
2
+ export * from "./MediaPickerProviderStorageWCMContext";
@@ -0,0 +1,17 @@
1
+ export declare function useWcmIcons(): {
2
+ icon: {
3
+ createPageType: import("@omnia/fx-models").FontAwesomeIcon;
4
+ createPageCollection: import("@omnia/fx-models").FontAwesomeIcon;
5
+ createPage: import("@omnia/fx-models").FontAwesomeIcon;
6
+ pageType: import("@omnia/fx-models").FontAwesomeIcon;
7
+ pageCollection: import("@omnia/fx-models").FontAwesomeIcon;
8
+ page: import("@omnia/fx-models").FontAwesomeIcon;
9
+ information: import("@omnia/fx-models").FontAwesomeIcon;
10
+ alignLeft: import("@omnia/fx-models").FontAwesomeIcon;
11
+ alignRight: import("@omnia/fx-models").FontAwesomeIcon;
12
+ alignCenter: import("@omnia/fx-models").FontAwesomeIcon;
13
+ userNinja: import("@omnia/fx-models").FontAwesomeIcon;
14
+ painBrush: import("@omnia/fx-models").FontAwesomeIcon;
15
+ slider: import("@omnia/fx-models").FontAwesomeIcon;
16
+ };
17
+ };
@@ -0,0 +1 @@
1
+ export * from "./UseWcmIcons";
@@ -1 +1 @@
1
- {"wc":{"namespace":"owcm","mappings":{"WcmDashboardMetric-401Detail":"wcm-dashboard-metric-401-detail","WcmDashboardMetric-401Indicator":"wcm-dashboard-metric-401-indicator","WcmDashboardMetric-404Detail":"wcm-dashboard-metric-404-detail","WcmDashboardMetric-404Indicator":"wcm-dashboard-metric-404-indicator","OwcmOmniaSearchLogging":"owcm-omnia-search-logging","WcmPageNavigation":"wcm-page-navigation","WcmPageNavigationSettings":"wcm-page-navigation-settings","WcmVariationPicker":"wcm-variation-picker","OwcmPageFeedbackActionDialog":"owcm-page-feedback-action-dialog","WcmGovernanceAdminDashboardMenuJourney":"wcm-governance-admin-dashboard-menu-journey","WcmGovernanceAdminDashboardUnderusedcontentJourney":"wcm-governance-admin-dashboard-underusedcontent-journey","WcmGovernanceAdminDashboardActiveuserJourney":"wcm-governance-admin-dashboard-activeuser-journey","WcmGovernanceAdminDashboardUserpropertyJourney":"wcm-governance-admin-dashboard-userproperty-journey","WcmAdminQueryproperties":"wcm-admin-queryproperties","OwcmPageRollup":"owcm-page-rollup","OwcmPublishingappFilterengineRenderer":"owcm-publishingapp-filterengine-renderer","OwcmFilterengineSelectionsareaPublishingapp":"owcm-filterengine-selectionsarea-publishingapp","OwcmPublishingappFilterenginePropertysettings":"owcm-publishingapp-filterengine-propertysettings","OwcmPublishingappFilterengineDefaultvalueInput":"owcm-publishingapp-filterengine-defaultvalue-input","OwcmPagetypeFilterengineRenderer":"owcm-pagetype-filterengine-renderer","OwcmFilterengineSelectionsareaPagetype":"owcm-filterengine-selectionsarea-pagetype","OwcmPagetypeFilterenginePropertysettings":"owcm-pagetype-filterengine-propertysettings","OwcmPagetypeFilterengineDefaultvalueInput":"owcm-pagetype-filterengine-defaultvalue-input","OwcmChannelFilterengineRenderer":"owcm-channel-filterengine-renderer","OwcmFilterengineSelectionsareaChannel":"owcm-filterengine-selectionsarea-channel","OwcmChannelFilterenginePropertysettings":"owcm-channel-filterengine-propertysettings","OwcmChannelFilterengineDefaultvalueInput":"owcm-channel-filterengine-defaultvalue-input","WcmAdminReindexcontentOmniasearchBlade":"wcm-admin-reindexcontent-omniasearch-blade","WcmCalendarviewLocationselectorDialog":"wcm-calendarview-locationselector-dialog","OwcmPageRollupMetricDetail":"owcm-page-rollup-metric-detail","OwcmPageRollupRenderer":"owcm-page-rollup-renderer","WcmPropertiesPagecollectionDisplay":"wcm-properties-pagecollection-display","WcmPropertiesPagecollectionEditor":"wcm-properties-pagecollection-editor","WcmPropertiesPagetypeDisplay":"wcm-properties-pagetype-display","WcmPropertiesPagetypeEditor":"wcm-properties-pagetype-editor","WcmPropertiesPublishingappDisplay":"wcm-properties-publishingapp-display","WcmPropertiesPublishingappEditor":"wcm-properties-publishingapp-editor","WcmBackgroundselector":"wcm-backgroundselector","OwcmEditor":"owcm-editor","WcmInviteCoauthors":"wcm-invite-coauthors","WcmLinkNavigationForm":"wcm-link-navigation-form","OwcmPagerenderer":"owcm-pagerenderer","OwcmAppmanagementSetup":"owcm-appmanagement-setup","OwcmAttachSiteButton":"owcm-attach-site-button","OwcmAppEditing":"owcm-app-editing","OwcmEditorActiontoolbarVariationselector":"owcm-editor-actiontoolbar-variationselector","WcmCheckedoutMessageViewer":"wcm-checkedout-message-viewer","OwcmEditorPagecollectionsettings":"owcm-editor-pagecollectionsettings","WcmAdminPagecollectionsettings":"wcm-admin-pagecollectionsettings","OmxEmSystemAccount":"omx-em-system-account","WcmPageChangepagetype":"wcm-page-changepagetype","WcmStatisticsPerPage":"wcm-statistics-per-page","WcmPageVersions":"wcm-page-versions"}}}
1
+ {"wc":{"namespace":"owcm","mappings":{"WcmButtonlink":"wcm-buttonlink","WcmButtonlinkSettings":"wcm-buttonlink-settings","WcmBreadcrumb":"wcm-breadcrumb","WcmBreadcrumbSettings":"wcm-breadcrumb-settings","WcmDashboardMetric-401Detail":"wcm-dashboard-metric-401-detail","WcmDashboardMetric-401Indicator":"wcm-dashboard-metric-401-indicator","WcmDashboardMetric-404Detail":"wcm-dashboard-metric-404-detail","WcmDashboardMetric-404Indicator":"wcm-dashboard-metric-404-indicator","WcmMedia":"wcm-media","WcmMediaBlockSettings":"wcm-media-block-settings","OwcmOmniaSearchLogging":"owcm-omnia-search-logging","WcmPageNavigation":"wcm-page-navigation","WcmPageNavigationSettings":"wcm-page-navigation-settings","WcmVariationPicker":"wcm-variation-picker","WcmLinkbuttonSettings":"wcm-linkbutton-settings","WcmLinkbuttonView":"wcm-linkbutton-view","OwcmPageFeedbackActionDialog":"owcm-page-feedback-action-dialog","WcmGovernanceAdminDashboardMenuJourney":"wcm-governance-admin-dashboard-menu-journey","WcmGovernanceAdminDashboardUnderusedcontentJourney":"wcm-governance-admin-dashboard-underusedcontent-journey","WcmGovernanceAdminDashboardActiveuserJourney":"wcm-governance-admin-dashboard-activeuser-journey","WcmGovernanceAdminDashboardUserpropertyJourney":"wcm-governance-admin-dashboard-userproperty-journey","WcmAdminQueryproperties":"wcm-admin-queryproperties","OwcmChannelsCardview":"owcm-channels-cardview","OwcmPageRollup":"owcm-page-rollup","OwcmPublishingappFilterengineRenderer":"owcm-publishingapp-filterengine-renderer","OwcmFilterengineSelectionsareaPublishingapp":"owcm-filterengine-selectionsarea-publishingapp","OwcmPublishingappFilterenginePropertysettings":"owcm-publishingapp-filterengine-propertysettings","OwcmPublishingappFilterengineDefaultvalueInput":"owcm-publishingapp-filterengine-defaultvalue-input","OwcmPagetypeFilterengineRenderer":"owcm-pagetype-filterengine-renderer","OwcmFilterengineSelectionsareaPagetype":"owcm-filterengine-selectionsarea-pagetype","OwcmPagetypeFilterenginePropertysettings":"owcm-pagetype-filterengine-propertysettings","OwcmPagetypeFilterengineDefaultvalueInput":"owcm-pagetype-filterengine-defaultvalue-input","OwcmChannelFilterengineRenderer":"owcm-channel-filterengine-renderer","OwcmFilterengineSelectionsareaChannel":"owcm-filterengine-selectionsarea-channel","OwcmChannelFilterenginePropertysettings":"owcm-channel-filterengine-propertysettings","OwcmChannelFilterengineDefaultvalueInput":"owcm-channel-filterengine-defaultvalue-input","WcmAdminReindexcontentOmniasearchBlade":"wcm-admin-reindexcontent-omniasearch-blade","WcmLinkPage":"wcm-link-page","WcmLinkPageItem":"wcm-link-page-item","WcmSelectedPageItem":"wcm-selected-page-item","WcmCalendarviewLocationselectorDialog":"wcm-calendarview-locationselector-dialog","OwcmPickedPagesDialog":"owcm-picked-pages-dialog","OwcmPageRollupMetricDetail":"owcm-page-rollup-metric-detail","OwcmPageRollupRenderer":"owcm-page-rollup-renderer","WcmPropertiesPagecollectionDisplay":"wcm-properties-pagecollection-display","WcmPropertiesPagecollectionEditor":"wcm-properties-pagecollection-editor","WcmPropertiesPagetypeDisplay":"wcm-properties-pagetype-display","WcmPropertiesPagetypeEditor":"wcm-properties-pagetype-editor","WcmPropertiesPublishingappDisplay":"wcm-properties-publishingapp-display","WcmPropertiesPublishingappEditor":"wcm-properties-publishingapp-editor","WcmApprovalHistory":"wcm-approval-history","WcmBackgroundselector":"wcm-backgroundselector","OwcmCreatepage":"owcm-createpage","WcmCurrentNavigation":"wcm-current-navigation","WcmCurrentNavigationSettings":"wcm-current-navigation-settings","OwcmEditor":"owcm-editor","WcmInviteCoauthors":"wcm-invite-coauthors","WcmLinkNavigationForm":"wcm-link-navigation-form","WcmProfileMegaMenu":"wcm-profile-mega-menu","WcmProfileMegaMenuSettings":"wcm-profile-mega-menu-settings","WcmBlockMegaMenu":"wcm-block-mega-menu","WcmBlockMegaMenuSettings":"wcm-block-mega-menu-settings","OwcmPagerenderer":"owcm-pagerenderer","OwcmAppmanagementSetup":"owcm-appmanagement-setup","OwcmAttachSiteButton":"owcm-attach-site-button","OwcmAppEditing":"owcm-app-editing","OwcmEditorActiontoolbarVariationselector":"owcm-editor-actiontoolbar-variationselector","WcmCheckedoutMessageViewer":"wcm-checkedout-message-viewer","OwcmPageChannelEditor":"owcm-page-channel-editor","OwcmEditorAppsettingsGeneral":"owcm-editor-appsettings-general","OwcmEditorAppsettingsAdvanced":"owcm-editor-appsettings-advanced","OwcmEditorAppsettingsPermission":"owcm-editor-appsettings-permission","OwcmEditorAppsettingsAuthenticationOptions":"owcm-editor-appsettings-authentication-options","OwcmEditorAppsettingsVariation":"owcm-editor-appsettings-variation","OwcmEditorAppsettingsStatisticprovider":"owcm-editor-appsettings-statisticprovider","OwcmEditorAppsettingsGamification":"owcm-editor-appsettings-gamification","OwcmEditorAppsettingsArchive":"owcm-editor-appsettings-archive","OwcmEditorPagecollectionsettings":"owcm-editor-pagecollectionsettings","WcmMegaMenuDefaultNavigation":"wcm-mega-menu-default-navigation","WcmMegaMenuSettings":"wcm-mega-menu-settings","OwcmAppLayoutRenderer":"owcm-app-layout-renderer","WcmAppAdminAppsettingsAdvanced":"wcm-app-admin-appsettings-advanced","WcmAppAdminAppsettingsPermission":"wcm-app-admin-appsettings-permission","WcmAppAdminAppsettingsGamification":"wcm-app-admin-appsettings-gamification","WcmAppAdminAppsettingsStatistic":"wcm-app-admin-appsettings-statistic","WcmAdminPagecollectionsettings":"wcm-admin-pagecollectionsettings","OmxEmSystemAccount":"omx-em-system-account","WcmPageChangepagetype":"wcm-page-changepagetype","WcmStatisticsPerPage":"wcm-statistics-per-page","WcmPageVersions":"wcm-page-versions"}}}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/wcm",
3
3
  "license": "MIT",
4
- "version": "8.0.4-dev",
4
+ "version": "8.0.5-dev",
5
5
  "description": "Omnia Web Content Management.",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1"
@@ -1,13 +0,0 @@
1
- import { GuidValue, MediaPickerStorageProviderContext } from "@omnia/fx-models";
2
- declare abstract class MediaPickerProviderStorageWCMContext extends MediaPickerStorageProviderContext {
3
- readonly omniaServiceId: GuidValue;
4
- }
5
- export declare class MediaPickerStorageProviderWCMChannelAdminContext extends MediaPickerProviderStorageWCMContext {
6
- readonly storageProviderContextId: GuidValue;
7
- /**
8
- *
9
- * @param businessProfileId Null for tenant level
10
- */
11
- constructor();
12
- }
13
- export {};
@@ -1,22 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.MediaPickerStorageProviderWCMChannelAdminContext = void 0;
4
- const fx_models_1 = require("@omnia/fx-models");
5
- const ManifestIds_1 = require("../ManifestIds");
6
- class MediaPickerProviderStorageWCMContext extends fx_models_1.MediaPickerStorageProviderContext {
7
- constructor() {
8
- super(...arguments);
9
- this.omniaServiceId = ManifestIds_1.WcmService.Id;
10
- }
11
- }
12
- class MediaPickerStorageProviderWCMChannelAdminContext extends MediaPickerProviderStorageWCMContext {
13
- /**
14
- *
15
- * @param businessProfileId Null for tenant level
16
- */
17
- constructor() {
18
- super();
19
- this.storageProviderContextId = new fx_models_1.Guid("1de38673-a37d-4a0f-8e31-ae7934163a31");
20
- }
21
- }
22
- exports.MediaPickerStorageProviderWCMChannelAdminContext = MediaPickerStorageProviderWCMChannelAdminContext;
@@ -1,8 +0,0 @@
1
- import { GuidValue, MediaPickerStorageProviderContext } from "@omnia/fx-models";
2
- import { PageId } from "../pages";
3
- export declare class MediaPickerStorageProviderPageContext implements MediaPickerStorageProviderContext {
4
- readonly omniaServiceId: GuidValue;
5
- readonly storageProviderContextId: GuidValue;
6
- readonly pageId: PageId;
7
- constructor(pageId: PageId);
8
- }
@@ -1,13 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.MediaPickerStorageProviderPageContext = void 0;
4
- const fx_models_1 = require("@omnia/fx-models");
5
- const ManifestIds_1 = require("../ManifestIds");
6
- class MediaPickerStorageProviderPageContext {
7
- constructor(pageId) {
8
- this.omniaServiceId = ManifestIds_1.WcmService.Id;
9
- this.storageProviderContextId = new fx_models_1.Guid("d4068218-75b6-4dab-beb0-a96b0b33984d");
10
- this.pageId = pageId;
11
- }
12
- }
13
- exports.MediaPickerStorageProviderPageContext = MediaPickerStorageProviderPageContext;
@@ -1,9 +0,0 @@
1
- import { GuidValue, MediaPickerStorageProviderContext } from "@omnia/fx-models";
2
- import { PageId } from "../pages";
3
- export declare class MediaPickerStorageProviderPageCreationContext implements MediaPickerStorageProviderContext {
4
- readonly omniaServiceId: GuidValue;
5
- readonly storageProviderContextId: GuidValue;
6
- readonly parentPageId: PageId;
7
- readonly publishingAppId: GuidValue;
8
- constructor(parentPageId: PageId, publishingAppId: GuidValue);
9
- }
@@ -1,14 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.MediaPickerStorageProviderPageCreationContext = void 0;
4
- const fx_models_1 = require("@omnia/fx-models");
5
- const ManifestIds_1 = require("../ManifestIds");
6
- class MediaPickerStorageProviderPageCreationContext {
7
- constructor(parentPageId, publishingAppId) {
8
- this.omniaServiceId = ManifestIds_1.WcmService.Id;
9
- this.storageProviderContextId = new fx_models_1.Guid("e4b9ba10-478d-419c-9fc0-fed4b69ce883");
10
- this.parentPageId = parentPageId;
11
- this.publishingAppId = publishingAppId;
12
- }
13
- }
14
- exports.MediaPickerStorageProviderPageCreationContext = MediaPickerStorageProviderPageCreationContext;
@@ -1,8 +0,0 @@
1
- import { GuidValue, MediaPickerStorageProviderContext } from "@omnia/fx-models";
2
- import { PageId } from "../pages";
3
- export declare class MediaPickerStorageProviderPageReadContext implements MediaPickerStorageProviderContext {
4
- readonly omniaServiceId: GuidValue;
5
- readonly storageProviderContextId: GuidValue;
6
- readonly pageId: PageId;
7
- constructor(pageId: PageId);
8
- }
@@ -1,13 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.MediaPickerStorageProviderPageReadContext = void 0;
4
- const fx_models_1 = require("@omnia/fx-models");
5
- const ManifestIds_1 = require("../ManifestIds");
6
- class MediaPickerStorageProviderPageReadContext {
7
- constructor(pageId) {
8
- this.omniaServiceId = ManifestIds_1.WcmService.Id;
9
- this.storageProviderContextId = new fx_models_1.Guid("b01196aa-3d29-4782-9887-4f2477e0560c");
10
- this.pageId = pageId;
11
- }
12
- }
13
- exports.MediaPickerStorageProviderPageReadContext = MediaPickerStorageProviderPageReadContext;
@@ -1,4 +0,0 @@
1
- export * from "./MediaPickerStorageProviderPageContext";
2
- export * from "./MediaPickerStorageProviderPageReadContext";
3
- export * from "./MediaPickerStorageProviderPageCreationContext";
4
- export * from "./MediaPickerProviderContext";
@@ -1,7 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const tslib_1 = require("tslib");
4
- tslib_1.__exportStar(require("./MediaPickerStorageProviderPageContext"), exports);
5
- tslib_1.__exportStar(require("./MediaPickerStorageProviderPageReadContext"), exports);
6
- tslib_1.__exportStar(require("./MediaPickerStorageProviderPageCreationContext"), exports);
7
- tslib_1.__exportStar(require("./MediaPickerProviderContext"), exports);