@omnia/wcm 8.0.3-dev → 8.0.4-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.
- package/internal-do-not-import-from-here/core/loc/PublishingAppLocalization.d.ts +1 -0
- package/internal-do-not-import-from-here/fx/constants.d.ts +1 -0
- package/internal-do-not-import-from-here/fx/models/ManifestIds.d.ts +4 -0
- package/internal-do-not-import-from-here/fx/models/ManifestIds.js +4 -0
- package/internal-do-not-import-from-here/fx/models/components/ActionButtonBlock.d.ts +2 -0
- package/internal-do-not-import-from-here/fx/models/components/PageFeedbackBlockStyles.d.ts +6 -0
- package/internal-do-not-import-from-here/tooling.output.json +1 -1
- package/package.json +1 -1
- package/task.d.ts +1 -0
- package/task.js +34 -0
|
@@ -47,6 +47,7 @@ export declare const BuiltInActionButtonHandlers: {
|
|
|
47
47
|
Event: ActionHandlerRegistrationId;
|
|
48
48
|
InviteCoAuthors: ActionHandlerRegistrationId;
|
|
49
49
|
AddToMyCalendar: ActionHandlerRegistrationId;
|
|
50
|
+
PageFeedback: ActionHandlerRegistrationId;
|
|
50
51
|
};
|
|
51
52
|
export declare const WCMPageKeyPrefix: {
|
|
52
53
|
page: string;
|
|
@@ -271,6 +271,9 @@ export declare class WcmWebComponentManifests {
|
|
|
271
271
|
static get PageFeedbackSettings(): Guid;
|
|
272
272
|
static get PageFeedbacksDialog(): Guid;
|
|
273
273
|
static get PageFeedbacksCore(): Guid;
|
|
274
|
+
static get ActionButtonPageFeedbackHandler(): Guid;
|
|
275
|
+
static get ActionButtonPageFeedbackSettings(): Guid;
|
|
276
|
+
static get ActionButtonPageFeedbackDialog(): Guid;
|
|
274
277
|
static get SharePage(): Guid;
|
|
275
278
|
static get SubscribeButton(): Guid;
|
|
276
279
|
static get ActionButtonSubscribeHandlerSettings(): Guid;
|
|
@@ -304,6 +307,7 @@ export declare class WcmWebComponentManifests {
|
|
|
304
307
|
static get DocumentDataTypeProviderDisplay(): Guid;
|
|
305
308
|
static get DocumentDataTypeProviderId(): Guid;
|
|
306
309
|
static get DocumentDataTypeProviderValueDefinition(): Guid;
|
|
310
|
+
static get FeedbackPerPage(): Guid;
|
|
307
311
|
static get IframeBlock(): Guid;
|
|
308
312
|
static get IFrameBlockSettings(): Guid;
|
|
309
313
|
static get CommentSearchProviderSettings(): Guid;
|
|
@@ -287,6 +287,9 @@ class WcmWebComponentManifests {
|
|
|
287
287
|
static get PageFeedbackSettings() { return new fx_models_1.Guid("0e4bebef-a4f7-4a6e-b1d8-48d62ac78312"); }
|
|
288
288
|
static get PageFeedbacksDialog() { return new fx_models_1.Guid("02377b92-cf24-4ca0-b09e-c5095792890e"); }
|
|
289
289
|
static get PageFeedbacksCore() { return new fx_models_1.Guid("e89a7566-41da-406c-b9aa-d7446513fea7"); }
|
|
290
|
+
static get ActionButtonPageFeedbackHandler() { return new fx_models_1.Guid("66BD5D13-4FD6-40B1-B617-58ADFFED2077"); }
|
|
291
|
+
static get ActionButtonPageFeedbackSettings() { return new fx_models_1.Guid("E8E01868-DF28-485D-B296-099B272B4619"); }
|
|
292
|
+
static get ActionButtonPageFeedbackDialog() { return new fx_models_1.Guid("70343DA4-32A4-45A4-A19F-F2F13F0538A1"); }
|
|
290
293
|
static get SharePage() { return new fx_models_1.Guid("03cc9cdf-57fd-40cb-b3cd-eac5c8a11ddf"); }
|
|
291
294
|
static get SubscribeButton() { return new fx_models_1.Guid("5d0650eb-1a50-4de3-87f9-3e008ca9c623"); }
|
|
292
295
|
static get ActionButtonSubscribeHandlerSettings() { return new fx_models_1.Guid("8e9797e4-6294-43c2-a768-178f3a7bbb87"); }
|
|
@@ -320,6 +323,7 @@ class WcmWebComponentManifests {
|
|
|
320
323
|
static get DocumentDataTypeProviderDisplay() { return new fx_models_1.Guid("62d2967c-2d45-4549-9333-d170f4943d34"); }
|
|
321
324
|
static get DocumentDataTypeProviderId() { return new fx_models_1.Guid("1bbedca1-baf3-4b90-86f6-2619d1d14431"); }
|
|
322
325
|
static get DocumentDataTypeProviderValueDefinition() { return new fx_models_1.Guid("7af3d7f9-6759-43b8-9d8b-8fa2f77b8cc9"); }
|
|
326
|
+
static get FeedbackPerPage() { return new fx_models_1.Guid("102F8FD4-55DB-426D-BD8A-DE2925571113"); }
|
|
323
327
|
static get IframeBlock() { return new fx_models_1.Guid("9c79ea1e-ee93-4058-b5fa-83e1eb54dcb1"); }
|
|
324
328
|
static get IFrameBlockSettings() { return new fx_models_1.Guid("5eb286a4-0462-4657-8d8c-00c481f4f1ff"); }
|
|
325
329
|
static get CommentSearchProviderSettings() { return new fx_models_1.Guid("acc40d11-6fe3-44f3-b75e-82c47f77baab"); }
|
|
@@ -15,4 +15,10 @@ export declare const PageFeedbackBlockStyles: {
|
|
|
15
15
|
};
|
|
16
16
|
export declare const PageFeedbackDialogStyles: {
|
|
17
17
|
dialogWapper?: types.NestedCSSProperties;
|
|
18
|
+
messageContainer?: types.NestedCSSProperties;
|
|
19
|
+
messageIcon?: types.NestedCSSProperties;
|
|
20
|
+
messageText?: types.NestedCSSProperties;
|
|
21
|
+
messageContent?: types.NestedCSSProperties;
|
|
22
|
+
messageContentWidth?: types.NestedCSSProperties;
|
|
23
|
+
messageContentHeight?: types.NestedCSSProperties;
|
|
18
24
|
};
|
|
@@ -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","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":{"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"}}}
|
package/package.json
CHANGED
package/task.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function init(): void;
|
package/task.js
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.init = void 0;
|
|
4
|
+
const tooling_vue_1 = require("@omnia/tooling-vue");
|
|
5
|
+
const path = require("path");
|
|
6
|
+
const fs = require("fs");
|
|
7
|
+
const fsExtra = require("fs-extra");
|
|
8
|
+
function init() {
|
|
9
|
+
if (fs.existsSync(process.cwd().replace(/\\/g, "/") + "/node_modules/@omnia/tooling-vue/internal-do-not-import-from-here/tasks/bundle.js")) {
|
|
10
|
+
//const tooling = require('@omnia/tooling-vue/internal-do-not-import-from-here/tasks/bundle');
|
|
11
|
+
(0, tooling_vue_1.registerManifestsReference)([
|
|
12
|
+
{
|
|
13
|
+
path: "node_modules/@omnia/wcm/internal-do-not-import-from-here/manifests/omnia.wcm.fx.core.manifest.json",
|
|
14
|
+
serviceId: "d60fa82a-129a-41a9-93ce-d784dcb217b0",
|
|
15
|
+
resourceId: "73f0116c-212c-4912-b780-d8df4ea3d78b"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
path: "node_modules/@omnia/wcm/internal-do-not-import-from-here/manifests/omnia.wcm.fx.manifest.json",
|
|
19
|
+
serviceId: "d60fa82a-129a-41a9-93ce-d784dcb217b0",
|
|
20
|
+
resourceId: "a41d1723-10ca-4597-9c40-fd4f511ae2ae"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
path: "node_modules/@omnia/wcm/internal-do-not-import-from-here/manifests/omnia.wcm.fxux.manifest.json",
|
|
24
|
+
serviceId: "d60fa82a-129a-41a9-93ce-d784dcb217b0",
|
|
25
|
+
resourceId: "673c8e89-b2a1-40de-89aa-47c8e443a173"
|
|
26
|
+
}
|
|
27
|
+
]);
|
|
28
|
+
const outputPath = path.resolve(__dirname, "./internal-do-not-import-from-here/tooling.output.json");
|
|
29
|
+
if (fsExtra.existsSync(outputPath)) {
|
|
30
|
+
(0, tooling_vue_1.registerOutputInfo)(fsExtra.readJSONSync(outputPath));
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
exports.init = init;
|