@omnia/workplace 8.0.3-vnext → 8.0.4-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/internal-do-not-import-from-here/apis/Fx.d.ts +2 -1
- package/internal-do-not-import-from-here/core/loc/localize.d.ts +1 -1
- package/internal-do-not-import-from-here/core/utils/Utils.d.ts +4 -4
- package/internal-do-not-import-from-here/manifests/omnia.workplace.fx.manifest.json +1 -1
- package/internal-do-not-import-from-here/models/BusinessProfileDallEPromptDefault.d.ts +5 -0
- package/internal-do-not-import-from-here/models/BusinessProfileDallEPromptDefault.js +11 -0
- package/internal-do-not-import-from-here/models/Constants.d.ts +11 -2
- package/internal-do-not-import-from-here/models/Constants.js +14 -5
- package/internal-do-not-import-from-here/models/DallESettingsPrompts.d.ts +5 -0
- package/internal-do-not-import-from-here/models/DallESettingsPrompts.js +7 -0
- package/internal-do-not-import-from-here/models/ManifestIds.d.ts +33 -2
- package/internal-do-not-import-from-here/models/ManifestIds.js +33 -2
- package/internal-do-not-import-from-here/models/Search.d.ts +3 -3
- package/internal-do-not-import-from-here/models/analytics/analyticsdimensionmappings.d.ts +27 -0
- package/internal-do-not-import-from-here/models/analytics/analyticsdimensionmappings.js +8 -0
- package/internal-do-not-import-from-here/models/analytics/analyticsfiltersettings.d.ts +9 -0
- package/internal-do-not-import-from-here/models/analytics/analyticssettings.d.ts +6 -0
- package/internal-do-not-import-from-here/models/analytics/analyticssettings.js +2 -0
- package/internal-do-not-import-from-here/models/analytics/index.d.ts +4 -0
- package/internal-do-not-import-from-here/models/analytics/index.js +7 -0
- package/internal-do-not-import-from-here/models/analytics/widgetmetadata.d.ts +19 -0
- package/internal-do-not-import-from-here/models/analytics/widgetmetadata.js +2 -0
- package/internal-do-not-import-from-here/models/index.d.ts +3 -1
- package/internal-do-not-import-from-here/models/index.js +3 -1
- package/internal-do-not-import-from-here/models/signoffrequest/SignOffRequestProvider.d.ts +4 -1
- package/internal-do-not-import-from-here/models/signoffrequest/SignOffRequestProvider.js +5 -0
- package/internal-do-not-import-from-here/models/signoffrequest/SignOffRequestQuery.d.ts +5 -4
- package/internal-do-not-import-from-here/models/signoffrequest/SignOffRequestRollupBlockSettings.d.ts +8 -2
- package/internal-do-not-import-from-here/models/signoffrequest/SignOffRequestSettings.d.ts +1 -1
- package/internal-do-not-import-from-here/models/styles/AnnouncementStyles.d.ts +1 -0
- package/internal-do-not-import-from-here/models/teamcollaborationrollup/TeamCollaborationRollupBlock.d.ts +3 -2
- package/internal-do-not-import-from-here/models/teamcollaborationrollup/TeamCollaborationRollupBlockStyles.d.ts +1 -0
- package/internal-do-not-import-from-here/services/AnalyticsService.d.ts +16 -0
- package/internal-do-not-import-from-here/services/AnalyticsStoreService.d.ts +14 -0
- package/internal-do-not-import-from-here/services/index.d.ts +1 -0
- package/internal-do-not-import-from-here/stores/AnalyticsFilterStore.d.ts +11 -0
- package/internal-do-not-import-from-here/stores/AnalyticsStore.d.ts +33 -0
- package/internal-do-not-import-from-here/stores/index.d.ts +2 -0
- package/internal-do-not-import-from-here/tooling.output.json +1 -1
- package/internal-do-not-import-from-here/wctypings.d.ts +276 -174
- package/package.json +1 -1
- package/internal-do-not-import-from-here/models/statuscodelayout/StatusCodeDisplaySettings.d.ts +0 -14
- package/internal-do-not-import-from-here/models/statuscodelayout/StatusCodeLayoutProvider.d.ts +0 -8
- package/internal-do-not-import-from-here/models/statuscodelayout/StatusCodeLayoutProvider.js +0 -6
- package/internal-do-not-import-from-here/models/statuscodelayout/index.d.ts +0 -2
- package/internal-do-not-import-from-here/models/statuscodelayout/index.js +0 -5
- /package/internal-do-not-import-from-here/models/{statuscodelayout/StatusCodeDisplaySettings.js → analytics/analyticsfiltersettings.js} +0 -0
@@ -1,7 +1,8 @@
|
|
1
1
|
import * as WorkplaceStore from "../stores";
|
2
2
|
import * as WorkplaceCore from "../core";
|
3
3
|
import * as WorkplaceModels from "../models";
|
4
|
-
|
4
|
+
import * as AnalyticsService from "../services/AnalyticsService";
|
5
|
+
type WorkplaceFxApi = typeof WorkplaceStore & typeof WorkplaceCore & typeof AnalyticsService;
|
5
6
|
declare module "../models/WorkplaceApi" {
|
6
7
|
interface IWorkplaceApi {
|
7
8
|
fx: Promise<WorkplaceFxApi>;
|
@@ -10,10 +10,10 @@ export declare class WorkPlaceUtils {
|
|
10
10
|
static cloneObj: <T>(obj: T) => T;
|
11
11
|
static sortBy: <T>(items: T[], attr: string, isRevert?: boolean, isDeep?: boolean) => T[];
|
12
12
|
static deepFind(obj: any, paths: string[]): any;
|
13
|
-
static compareDeepFn(attrs: string[]): (a: any, b: any) =>
|
14
|
-
static compareDeepRevertFn(attrs: string[]): (a: any, b: any) =>
|
15
|
-
static compareFn(attr: string): (a: any, b: any) =>
|
16
|
-
static compareRevertFn(attr: string): (a: any, b: any) =>
|
13
|
+
static compareDeepFn(attrs: string[]): (a: any, b: any) => 1 | 0 | -1;
|
14
|
+
static compareDeepRevertFn(attrs: string[]): (a: any, b: any) => 1 | 0 | -1;
|
15
|
+
static compareFn(attr: string): (a: any, b: any) => 1 | 0 | -1;
|
16
|
+
static compareRevertFn(attr: string): (a: any, b: any) => 1 | 0 | -1;
|
17
17
|
static isValidGuid(id: string): boolean;
|
18
18
|
static executeMSTeamsDeepLinkIfPossible(microsoftTeams: MicrosoftTeams, url: string, e?: Event): boolean;
|
19
19
|
static formatKQLDateTimeString(input: Date | string): string;
|
@@ -1 +1 @@
|
|
1
|
-
{"name":"omniaWebpackJsonp['39df27aa-95f1-4a23-b3f6-8b231afcda82']['491a5b75-e3d6-472a-8958-216be85b092a']","content":{"./client/admin/settings/blades/tenantheader/loc/localize.js":{"id":"./client/admin/settings/blades/tenantheader/loc/localize.js","buildMeta":{"exportsType":"namespace"},"expo.js":["TenantHeaderLocalization"]},"./node_modules/@omnia/workplace/core/loc/formLocalize.js":{"id":"./node_modules/@omnia/workplace/core/loc/formlocalize.js","buildMeta":{"exportsType":"namespace"},"expo.js":["FormsLocalization"]},"./node_modules/@omnia/workplace/core/loc/localize.js":{"id":"./node_modules/@omnia/workplace/core/loc/localize.js","buildMeta":{"exportsType":"namespace"},"expo.js":["TeamCoreLocalization"]},"./node_modules/@omnia/workplace/core/loc/powerappLocalize.js":{"id":"./node_modules/@omnia/workplace/core/loc/powerapplocalize.js","buildMeta":{"exportsType":"namespace"},"expo.js":["PowerAppLocalization"]},"./node_modules/@omnia/workplace/core/messaging/InternalWorkplaceTopics.js":{"id":"./node_modules/@omnia/workplace/core/messaging/internalworkplacetopics.js","buildMeta":{"exportsType":"namespace"},"expo.js":["InternalWorkplaceTopics"]},"./node_modules/@omnia/workplace/services/index.js":{"id":"./node_modules/@omnia/workplace/services/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["AppAuthenticationOptionsService","FormService","HomeService","NotificationPanelHistoryService","PromotedSearchResultService","SearchCategoryService","SearchFeedbackService","SignOffRequestService","TeamCollaborationService"]},"./node_modules/@omnia/workplace/index.js":{"id":"8bf93338-8e70-4104-a75d-ae11485eec04","buildMeta":{"exportsType":"namespace"}},"./node_modules/@omnia/workplace/models/index.js":{"id":"c778308f-5fbb-4a3d-8691-ad7408ffbd56","buildMeta":{"exportsType":"namespace"}}}}
|
1
|
+
{"name":"omniaWebpackJsonp['39df27aa-95f1-4a23-b3f6-8b231afcda82']['491a5b75-e3d6-472a-8958-216be85b092a']","content":{"./client/admin/settings/blades/tenantheader/loc/localize.js":{"id":"./client/admin/settings/blades/tenantheader/loc/localize.js","buildMeta":{"exportsType":"namespace"},"expo.js":["TenantHeaderLocalization"]},"./node_modules/@omnia/workplace/core/loc/formLocalize.js":{"id":"./node_modules/@omnia/workplace/core/loc/formlocalize.js","buildMeta":{"exportsType":"namespace"},"expo.js":["FormsLocalization"]},"./node_modules/@omnia/workplace/core/loc/localize.js":{"id":"./node_modules/@omnia/workplace/core/loc/localize.js","buildMeta":{"exportsType":"namespace"},"expo.js":["TeamCoreLocalization"]},"./node_modules/@omnia/workplace/core/loc/powerappLocalize.js":{"id":"./node_modules/@omnia/workplace/core/loc/powerapplocalize.js","buildMeta":{"exportsType":"namespace"},"expo.js":["PowerAppLocalization"]},"./node_modules/@omnia/workplace/core/messaging/InternalWorkplaceTopics.js":{"id":"./node_modules/@omnia/workplace/core/messaging/internalworkplacetopics.js","buildMeta":{"exportsType":"namespace"},"expo.js":["InternalWorkplaceTopics"]},"./node_modules/@omnia/workplace/services/index.js":{"id":"./node_modules/@omnia/workplace/services/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["AnalyticsService","AppAuthenticationOptionsService","FormService","HomeService","NotificationPanelHistoryService","PromotedSearchResultService","SearchCategoryService","SearchFeedbackService","SignOffRequestService","TeamCollaborationService"]},"./node_modules/@omnia/workplace/index.js":{"id":"8bf93338-8e70-4104-a75d-ae11485eec04","buildMeta":{"exportsType":"namespace"}},"./node_modules/@omnia/workplace/models/index.js":{"id":"c778308f-5fbb-4a3d-8691-ad7408ffbd56","buildMeta":{"exportsType":"namespace"}}}}
|
@@ -0,0 +1,11 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.BusinessProfileDallEPromptDefaultSettings = void 0;
|
4
|
+
const fx_models_1 = require("@omnia/fx-models");
|
5
|
+
const ManifestIds_1 = require("./ManifestIds");
|
6
|
+
class BusinessProfileDallEPromptDefaultSettings extends fx_models_1.BusinessProfileProperty {
|
7
|
+
constructor() {
|
8
|
+
super(ManifestIds_1.ServiceDefinition.Id, "dallepromptsettings");
|
9
|
+
}
|
10
|
+
}
|
11
|
+
exports.BusinessProfileDallEPromptDefaultSettings = BusinessProfileDallEPromptDefaultSettings;
|
@@ -5,7 +5,6 @@ export declare const Constants: {
|
|
5
5
|
showNavigationBar: string;
|
6
6
|
mobilelogin: string;
|
7
7
|
rulesLinkHandler: string;
|
8
|
-
documentLinkHandler: string;
|
9
8
|
teamworkCore: string;
|
10
9
|
teamworkAutomaticGovernance: string;
|
11
10
|
teamsSingleSignOn: string;
|
@@ -19,6 +18,11 @@ export declare const Constants: {
|
|
19
18
|
oneDriveDocumentCreationWizard: string;
|
20
19
|
scheduledSPTeamSiteSync: string;
|
21
20
|
createTeams: string;
|
21
|
+
customEmail: string;
|
22
|
+
yammerIntegration: string;
|
23
|
+
facebookWorkplace: string;
|
24
|
+
sharepointUserProfilesSync: string;
|
25
|
+
analyticsCore: string;
|
22
26
|
};
|
23
27
|
themingNavigationNodeKey: string;
|
24
28
|
themeIds: {
|
@@ -141,7 +145,6 @@ export declare const GovernanceDashboard: {
|
|
141
145
|
};
|
142
146
|
};
|
143
147
|
export declare const StatusCodeDisplay: {
|
144
|
-
DefaultSettingKey: string;
|
145
148
|
ActionButtonIds: {
|
146
149
|
edit: string;
|
147
150
|
save: string;
|
@@ -240,3 +243,9 @@ export declare const TableNames: {
|
|
240
243
|
SignOffRequests: string;
|
241
244
|
};
|
242
245
|
export declare const SignOffRequestInfoPersistentDialogId = "omnia-workplace-signoffrequest-info-persistentdialog";
|
246
|
+
export declare const reCaptchaSecretKey = "omnia-recaptcha-secret";
|
247
|
+
export declare const ReCaptChaSecretFormNames: {
|
248
|
+
readonly enabled: "enabled";
|
249
|
+
readonly sitekey: "sitekey";
|
250
|
+
readonly secretkey: "secretkey";
|
251
|
+
};
|
@@ -1,6 +1,6 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.SignOffRequestInfoPersistentDialogId = exports.TableNames = exports.SetupWizard = exports.NotificationConstants = exports.AppProvisioningSteps = exports.SettingsKeys = exports.HeaderSettingsMode = exports.MSTeamTemplateStep = exports.MembersStep = exports.TeamWorkInfo = exports.StatusCodeDisplay = exports.GovernanceDashboard = exports.WorkspaceApp = exports.WorkplaceAppRoutePrefix = exports.TeamCollaborationAppDefinitionInfo = exports.TeamCollaborationAppEnterpriseProperties = exports.AppInstanceDescriptionProperties = exports.BuiltInActionButtonHandlers = exports.Constants = void 0;
|
3
|
+
exports.ReCaptChaSecretFormNames = exports.reCaptchaSecretKey = exports.SignOffRequestInfoPersistentDialogId = exports.TableNames = exports.SetupWizard = exports.NotificationConstants = exports.AppProvisioningSteps = exports.SettingsKeys = exports.HeaderSettingsMode = exports.MSTeamTemplateStep = exports.MembersStep = exports.TeamWorkInfo = exports.StatusCodeDisplay = exports.GovernanceDashboard = exports.WorkspaceApp = exports.WorkplaceAppRoutePrefix = exports.TeamCollaborationAppDefinitionInfo = exports.TeamCollaborationAppEnterpriseProperties = exports.AppInstanceDescriptionProperties = exports.BuiltInActionButtonHandlers = exports.Constants = void 0;
|
4
4
|
const fx_models_1 = require("@omnia/fx-models");
|
5
5
|
const ManifestIds_1 = require("./ManifestIds");
|
6
6
|
exports.Constants = {
|
@@ -9,7 +9,6 @@ exports.Constants = {
|
|
9
9
|
showNavigationBar: "fd86ca16-e6fd-42ed-b11e-5e8267cda628",
|
10
10
|
mobilelogin: "36a8ce49-a2a4-4905-88cd-694cc8e0bfad",
|
11
11
|
rulesLinkHandler: "ddca589b-9478-4267-b5bf-d557b4494dae",
|
12
|
-
documentLinkHandler: "a6caf455-033e-4a04-82f3-83b925313145",
|
13
12
|
teamworkCore: "0d16845b-5497-4616-afeb-edc50a09f6a2",
|
14
13
|
teamworkAutomaticGovernance: "eb392913-bfe9-435b-874b-47d8d15f157c",
|
15
14
|
teamsSingleSignOn: "4e0c0908-f60f-4a48-b3ac-ea092e31786c",
|
@@ -22,7 +21,12 @@ exports.Constants = {
|
|
22
21
|
sensitivityLabelsCore: "31297203-d465-4db8-8cf5-f6f6e9097671",
|
23
22
|
oneDriveDocumentCreationWizard: "7ee17fdd-a26b-4f0d-899b-b85e713a45cd",
|
24
23
|
scheduledSPTeamSiteSync: "8deddbc9-4142-4da9-aa09-d4ca57b0de98",
|
25
|
-
createTeams: "47caa101-2e7d-498b-b1cd-61eab0292785"
|
24
|
+
createTeams: "47caa101-2e7d-498b-b1cd-61eab0292785",
|
25
|
+
customEmail: "2091fad0-6b95-4724-bd35-f5c8de52b443",
|
26
|
+
yammerIntegration: "b8b09c2b-b7a4-447b-b6b9-fdd8a16bab0c",
|
27
|
+
facebookWorkplace: "8D243613-9966-4D10-AE7D-CD3938DA47AF",
|
28
|
+
sharepointUserProfilesSync: "cfd49770-2275-4f72-a164-355f51e5dcb4",
|
29
|
+
analyticsCore: "29ce6dcb-da60-44d7-a6ec-5da9fb5bc658"
|
26
30
|
},
|
27
31
|
themingNavigationNodeKey: "50c83e32-8a25-4c48-8f94-ef250236f755",
|
28
32
|
themeIds: {
|
@@ -71,7 +75,7 @@ exports.Constants = {
|
|
71
75
|
teamworkRollup: {
|
72
76
|
filterEngineContextUniqueId: "3afa11c3-ed91-4da3-9afa-bf08489b28c0"
|
73
77
|
},
|
74
|
-
}
|
78
|
+
},
|
75
79
|
};
|
76
80
|
exports.BuiltInActionButtonHandlers = {
|
77
81
|
AddFavoriteButton: fx_models_1.ActionHandlerRegistrationId.create(new fx_models_1.Guid("ad1a3e19-4f08-4ebd-b05e-40a37e1ad4c3")),
|
@@ -160,7 +164,6 @@ exports.GovernanceDashboard = {
|
|
160
164
|
}
|
161
165
|
};
|
162
166
|
exports.StatusCodeDisplay = {
|
163
|
-
DefaultSettingKey: "omnia.workplace.httpstatuscode.layout",
|
164
167
|
ActionButtonIds: {
|
165
168
|
edit: "edithttpcodelayout",
|
166
169
|
save: "savehttpcodelayout",
|
@@ -263,3 +266,9 @@ exports.TableNames = {
|
|
263
266
|
SignOffRequests: "SignOffRequests"
|
264
267
|
};
|
265
268
|
exports.SignOffRequestInfoPersistentDialogId = "omnia-workplace-signoffrequest-info-persistentdialog";
|
269
|
+
exports.reCaptchaSecretKey = "omnia-recaptcha-secret";
|
270
|
+
exports.ReCaptChaSecretFormNames = {
|
271
|
+
enabled: "enabled",
|
272
|
+
sitekey: "sitekey",
|
273
|
+
secretkey: "secretkey",
|
274
|
+
};
|
@@ -0,0 +1,7 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.DallESettingsPrompts = void 0;
|
4
|
+
const fx_models_1 = require("@omnia/fx-models");
|
5
|
+
class DallESettingsPrompts extends fx_models_1.PromptSettings {
|
6
|
+
}
|
7
|
+
exports.DallESettingsPrompts = DallESettingsPrompts;
|
@@ -373,6 +373,8 @@ export declare class WebComponentManifests {
|
|
373
373
|
static get TeamCollaborationListViewSettings(): Guid;
|
374
374
|
static get TeamCollaborationNavigationView(): Guid;
|
375
375
|
static get TeamCollaborationNavigationViewSettings(): Guid;
|
376
|
+
static get TeamCollaborationRollupRenderer(): Guid;
|
377
|
+
static get TeamCollaborationRollupMetricDetailsDialog(): Guid;
|
376
378
|
static get CreateTeamworkBlock(): Guid;
|
377
379
|
static get CreateTeamworkComponent(): Guid;
|
378
380
|
static get CreateTeamworkBlockSettings(): Guid;
|
@@ -435,6 +437,11 @@ export declare class WebComponentManifests {
|
|
435
437
|
static get PropertiesBlockSettings(): Guid;
|
436
438
|
static get PropertiesBlockSettingConfiguration(): Guid;
|
437
439
|
static get PropertiesBlock(): Guid;
|
440
|
+
static get AnalyticsBlocksCore(): Guid;
|
441
|
+
static get AnalyticsWidgetBlockSettings(): Guid;
|
442
|
+
static get AnalyticsWidgetBlock(): Guid;
|
443
|
+
static get AnalyticsFilterBlockSettings(): Guid;
|
444
|
+
static get AnalyticsFilterBlock(): Guid;
|
438
445
|
static get PowerAppBlock(): Guid;
|
439
446
|
static get PowerAppBlockSettings(): Guid;
|
440
447
|
static get PowerAppSettingAdminJourney(): Guid;
|
@@ -445,7 +452,8 @@ export declare class WebComponentManifests {
|
|
445
452
|
static get MsTeamTabLayoutConfiguration(): Guid;
|
446
453
|
static get PostsFeed(): Guid;
|
447
454
|
static get PostsFeedSettings(): Guid;
|
448
|
-
static get
|
455
|
+
static get TenantUserManagementJourney(): Guid;
|
456
|
+
static get BusinessProfileUserManagementJourney(): Guid;
|
449
457
|
static get UserManagementCore(): Guid;
|
450
458
|
static get UserManagementUserTypeListingBlade(): Guid;
|
451
459
|
static get UserManagementUserTypeCreateDialog(): Guid;
|
@@ -454,15 +462,29 @@ export declare class WebComponentManifests {
|
|
454
462
|
static get UserManagementSyncProviderSettingsBlade(): Guid;
|
455
463
|
static get UserManagementSyncProviderLogsBlade(): Guid;
|
456
464
|
static get UserManagementUserListingBlade(): Guid;
|
465
|
+
static get UserManagementActiveUserListing(): Guid;
|
466
|
+
static get UserManagementDeletedUserListing(): Guid;
|
457
467
|
static get UserManagementUserDetailBlade(): Guid;
|
458
468
|
static get UserManagementUserAuthenticationBlade(): Guid;
|
459
469
|
static get UserManagementGroupListingBlade(): Guid;
|
470
|
+
static get UserManagementActiveGroupListing(): Guid;
|
471
|
+
static get UserManagementDeletedGroupListing(): Guid;
|
460
472
|
static get UserManagementGroupDetailBlade(): Guid;
|
461
473
|
static get UserManagementAuthenticationSettingsBlade(): Guid;
|
462
474
|
static get UserManagementDynamicGroupListingBlade(): Guid;
|
463
475
|
static get UserManagementDynamicGroupDetailBlade(): Guid;
|
464
476
|
static get UserManagementUserPropertyListingBlade(): Guid;
|
465
477
|
static get UserManagementUserPropertyDetailBlade(): Guid;
|
478
|
+
static get UserManagementUserDetailBladeAuthenticationTab(): Guid;
|
479
|
+
static get UserManagementUserDetailBladePropertiesTab(): Guid;
|
480
|
+
static get UserManagementBulkImportBlade(): Guid;
|
481
|
+
static get BusinessProfileAuthenticationBlade(): Guid;
|
482
|
+
static get TenantAnalyticsJourney(): Guid;
|
483
|
+
static get TenantAnalyticsSetupBlade(): Guid;
|
484
|
+
static get TenantAnalyticsConfigurationBlade(): Guid;
|
485
|
+
static get TenantAnalyticsAddDimensionBlade(): Guid;
|
486
|
+
static get UserManagementIdentityCreationRequestSettingsBlade(): Guid;
|
487
|
+
static get UserManagementIdentityCreationRequestPendingApprovalListing(): Guid;
|
466
488
|
static get SetupWizardViewCore(): Guid;
|
467
489
|
static get SetupWizardGeneralStep(): Guid;
|
468
490
|
static get SetupWizardBrandingStep(): Guid;
|
@@ -477,7 +499,6 @@ export declare class WebComponentManifests {
|
|
477
499
|
static get SetupWizardNewsManagementLocalNewsStep(): Guid;
|
478
500
|
static get SetupWizardNewsManagementPropertiesStep(): Guid;
|
479
501
|
static get AttachSiteButton(): Guid;
|
480
|
-
static get SyncLastActivityButton(): Guid;
|
481
502
|
static get AppEditing(): Guid;
|
482
503
|
static get SensitivityLabel(): Guid;
|
483
504
|
static get SetupTeamwork(): Guid;
|
@@ -504,8 +525,18 @@ export declare class WebComponentManifests {
|
|
504
525
|
static get SignOffRequestsRollupFilter_Type_Settings(): Guid;
|
505
526
|
static get SignOffRequestsRollupFilter_Type_Selection(): Guid;
|
506
527
|
static get SignOffRequestsRollupFilter_Type_DefaultValueInput(): Guid;
|
528
|
+
static get SignOffRequestsRollupFilter_RequestedBy_Renderer(): Guid;
|
529
|
+
static get SignOffRequestsRollupFilter_RequestedBy_Settings(): Guid;
|
530
|
+
static get SignOffRequestsRollupFilter_RequestedBy_Selection(): Guid;
|
531
|
+
static get SignOffRequestsRollupFilter_RequestedBy_DefaultValueInput(): Guid;
|
532
|
+
static get UserInformationBlockGroup(): Guid;
|
533
|
+
static get UserInformationBlockCore(): Guid;
|
534
|
+
static get UserInformationBlockSettings(): Guid;
|
535
|
+
static get UserInformationBlockSettingConfiguration(): Guid;
|
536
|
+
static get UserInformationBlock(): Guid;
|
507
537
|
static get HttpCodeLayoutTenantJourney(): Guid;
|
508
538
|
static get HttpCodeLayoutBusinessProfileJourney(): Guid;
|
539
|
+
static get LoginScreenBlade(): Guid;
|
509
540
|
}
|
510
541
|
export declare class WebComponentElements {
|
511
542
|
static get AppProvisioningStepMember(): string;
|
@@ -382,6 +382,8 @@ class WebComponentManifests {
|
|
382
382
|
static get TeamCollaborationListViewSettings() { return new fx_models_1.Guid("D6F547EC-CF89-486F-8B59-C999553869E1"); }
|
383
383
|
static get TeamCollaborationNavigationView() { return new fx_models_1.Guid("1d7374e8-24bf-4e0e-b4d3-752fa89c7a38"); }
|
384
384
|
static get TeamCollaborationNavigationViewSettings() { return new fx_models_1.Guid("a1fd35eb-760a-45c7-b812-148a519ef500"); }
|
385
|
+
static get TeamCollaborationRollupRenderer() { return new fx_models_1.Guid("D22B2917-BE60-43D4-B989-49EBA88DCAC3"); }
|
386
|
+
static get TeamCollaborationRollupMetricDetailsDialog() { return new fx_models_1.Guid("75CCD5E7-F7B5-4D4F-AA6E-5391C1946B4B"); }
|
385
387
|
static get CreateTeamworkBlock() { return new fx_models_1.Guid("0f1da23c-05a0-4ff3-a3e6-83e1252db696"); }
|
386
388
|
static get CreateTeamworkComponent() { return new fx_models_1.Guid("466c0ccc-ed0e-41d9-b8c2-1200fb7ec59c"); }
|
387
389
|
static get CreateTeamworkBlockSettings() { return new fx_models_1.Guid("c5b867ec-4613-4b57-b75a-83461e1928ec"); }
|
@@ -444,6 +446,11 @@ class WebComponentManifests {
|
|
444
446
|
static get PropertiesBlockSettings() { return new fx_models_1.Guid("29559185-3df2-4049-93e5-d8326ec94982"); }
|
445
447
|
static get PropertiesBlockSettingConfiguration() { return new fx_models_1.Guid("b95bdf10-d32d-4659-836c-eadc1d57ac55"); }
|
446
448
|
static get PropertiesBlock() { return new fx_models_1.Guid("88894e6a-2e41-44b6-a6f1-af3612caf276"); }
|
449
|
+
static get AnalyticsBlocksCore() { return new fx_models_1.Guid("1b9cc09e-9e67-4c7c-87ea-9854a345403b"); }
|
450
|
+
static get AnalyticsWidgetBlockSettings() { return new fx_models_1.Guid("a8d46ae3-9f87-457b-8f95-e4b4aea5df6c"); }
|
451
|
+
static get AnalyticsWidgetBlock() { return new fx_models_1.Guid("56dd7c8f-3c3f-4ec3-8e41-e398c79f945a"); }
|
452
|
+
static get AnalyticsFilterBlockSettings() { return new fx_models_1.Guid("287d6801-5fdb-4649-a057-b52adc1c278a"); }
|
453
|
+
static get AnalyticsFilterBlock() { return new fx_models_1.Guid("aebb9b0b-32ae-4b14-b0f1-3515b62f329f"); }
|
447
454
|
static get PowerAppBlock() { return new fx_models_1.Guid("8905b50b-3b48-4053-b667-d3abf5d7c4ef"); }
|
448
455
|
static get PowerAppBlockSettings() { return new fx_models_1.Guid("faa90898-9cc3-4db8-ab24-e36fa6d96ea3"); }
|
449
456
|
static get PowerAppSettingAdminJourney() { return new fx_models_1.Guid("b643dd40-d26c-4c73-9f23-d5fa4b436064"); }
|
@@ -454,7 +461,8 @@ class WebComponentManifests {
|
|
454
461
|
static get MsTeamTabLayoutConfiguration() { return new fx_models_1.Guid("104760a6-6754-4bbb-8325-4e42bef75b8a"); }
|
455
462
|
static get PostsFeed() { return new fx_models_1.Guid("74c4e208-e37f-41a5-ba96-c4bf64464523"); }
|
456
463
|
static get PostsFeedSettings() { return new fx_models_1.Guid("7f049298-9bb4-4f32-a2d4-2e8b8ffa6c1b"); }
|
457
|
-
static get
|
464
|
+
static get TenantUserManagementJourney() { return new fx_models_1.Guid("1d19aeb7-22e4-4b9e-9d26-17035854dd2a"); }
|
465
|
+
static get BusinessProfileUserManagementJourney() { return new fx_models_1.Guid("9539268b-7419-44dd-9707-96a5ff9d0b0d"); }
|
458
466
|
static get UserManagementCore() { return new fx_models_1.Guid("2b3fc3f2-bc60-44a0-8688-764f3b2d62c8"); }
|
459
467
|
static get UserManagementUserTypeListingBlade() { return new fx_models_1.Guid("ebd9788a-b217-4868-8f4e-594ecf568806"); }
|
460
468
|
static get UserManagementUserTypeCreateDialog() { return new fx_models_1.Guid("b4acc93e-c207-4b9c-b65d-d74e0058f416"); }
|
@@ -463,15 +471,29 @@ class WebComponentManifests {
|
|
463
471
|
static get UserManagementSyncProviderSettingsBlade() { return new fx_models_1.Guid("0ab38b6f-9852-40ec-83c4-37db8a27d7c6"); }
|
464
472
|
static get UserManagementSyncProviderLogsBlade() { return new fx_models_1.Guid("6a15d7ed-ea3d-4b54-8b71-d8a7f3e50295"); }
|
465
473
|
static get UserManagementUserListingBlade() { return new fx_models_1.Guid("6f1fc259-6ddb-411a-bf17-41ed422947e3"); }
|
474
|
+
static get UserManagementActiveUserListing() { return new fx_models_1.Guid("1972b656-c68c-4c50-afa7-c76c8959b88d"); }
|
475
|
+
static get UserManagementDeletedUserListing() { return new fx_models_1.Guid("a7dfb3df-024c-49ac-a5f0-6dfd46c2ab65"); }
|
466
476
|
static get UserManagementUserDetailBlade() { return new fx_models_1.Guid("fb9aa542-fd41-4c5f-8468-aa0ad67d11f7"); }
|
467
477
|
static get UserManagementUserAuthenticationBlade() { return new fx_models_1.Guid("2de8ec5f-9d03-4828-b192-8ba37e48b322"); }
|
468
478
|
static get UserManagementGroupListingBlade() { return new fx_models_1.Guid("0a208072-d45f-4f49-8d59-ab7b9da9a10d"); }
|
479
|
+
static get UserManagementActiveGroupListing() { return new fx_models_1.Guid("f333ebaa-d009-4169-a2ff-868e8b751bf9"); }
|
480
|
+
static get UserManagementDeletedGroupListing() { return new fx_models_1.Guid("3620baa9-5501-45fa-955e-79d176a72a51"); }
|
469
481
|
static get UserManagementGroupDetailBlade() { return new fx_models_1.Guid("836c198b-2a2c-418f-89a0-cf47ed44092d"); }
|
470
482
|
static get UserManagementAuthenticationSettingsBlade() { return new fx_models_1.Guid("a95a8b4a-7e94-4190-9240-87b361950843"); }
|
471
483
|
static get UserManagementDynamicGroupListingBlade() { return new fx_models_1.Guid("9c3a9218-af53-4e48-b95b-a122eb43db64"); }
|
472
484
|
static get UserManagementDynamicGroupDetailBlade() { return new fx_models_1.Guid("f43ef789-418d-4f56-bd27-88420f3d9823"); }
|
473
485
|
static get UserManagementUserPropertyListingBlade() { return new fx_models_1.Guid("77fa3438-c920-4b32-bddc-1b8361e530c2"); }
|
474
486
|
static get UserManagementUserPropertyDetailBlade() { return new fx_models_1.Guid("3967363b-80cd-4b12-900f-7a9c7975bf6a"); }
|
487
|
+
static get UserManagementUserDetailBladeAuthenticationTab() { return new fx_models_1.Guid("95A66C49-40C7-442C-B815-359C5D299365"); }
|
488
|
+
static get UserManagementUserDetailBladePropertiesTab() { return new fx_models_1.Guid("9C7C9267-6BAE-4157-A588-98EECB88663D"); }
|
489
|
+
static get UserManagementBulkImportBlade() { return new fx_models_1.Guid("8DF3CBAB-53D4-4091-8FE0-A44F88E92018"); }
|
490
|
+
static get BusinessProfileAuthenticationBlade() { return new fx_models_1.Guid("4C9410C5-86FF-49A6-A493-F8A35BB3F990"); }
|
491
|
+
static get TenantAnalyticsJourney() { return new fx_models_1.Guid("d64bc647-0d37-49de-bd60-eb0d39cbb4a9"); }
|
492
|
+
static get TenantAnalyticsSetupBlade() { return new fx_models_1.Guid("3e80d831-f02b-4c0b-bfbd-a1354896f98b"); }
|
493
|
+
static get TenantAnalyticsConfigurationBlade() { return new fx_models_1.Guid("4027e639-92ed-4064-95c8-f715f02cacac"); }
|
494
|
+
static get TenantAnalyticsAddDimensionBlade() { return new fx_models_1.Guid("752607aa-4b6e-4865-90cc-c867fa1e0d91"); }
|
495
|
+
static get UserManagementIdentityCreationRequestSettingsBlade() { return new fx_models_1.Guid("36D0078C-1C79-486B-B4E3-92A97F03BDB5"); }
|
496
|
+
static get UserManagementIdentityCreationRequestPendingApprovalListing() { return new fx_models_1.Guid("6F3F70CA-AFC5-4724-B3F8-405986A21717"); }
|
475
497
|
static get SetupWizardViewCore() { return new fx_models_1.Guid("758d200f-91f3-4446-8662-07592f89eeba"); }
|
476
498
|
static get SetupWizardGeneralStep() { return new fx_models_1.Guid("c5f83b2f-a21f-4210-b4f4-13ffda4ac129"); }
|
477
499
|
static get SetupWizardBrandingStep() { return new fx_models_1.Guid("084f1e3e-f0f5-4f2b-a75d-67f629308bf8"); }
|
@@ -486,7 +508,6 @@ class WebComponentManifests {
|
|
486
508
|
static get SetupWizardNewsManagementLocalNewsStep() { return new fx_models_1.Guid("e2b2cc13-18ff-4277-8463-e3708c2c54a4"); }
|
487
509
|
static get SetupWizardNewsManagementPropertiesStep() { return new fx_models_1.Guid("18a77776-3832-4776-a045-58e296dc8b01"); }
|
488
510
|
static get AttachSiteButton() { return new fx_models_1.Guid("2cff741d-3f85-46e3-b36f-143020d9a547"); }
|
489
|
-
static get SyncLastActivityButton() { return new fx_models_1.Guid("31470e4c-6f9d-4176-9d35-d31d1f8446fc"); }
|
490
511
|
static get AppEditing() { return new fx_models_1.Guid("c6d42107-01a5-4825-910e-4232aeac8b75"); }
|
491
512
|
static get SensitivityLabel() { return new fx_models_1.Guid("036c36b9-9a43-4829-aa09-01c6b5868a82"); }
|
492
513
|
static get SetupTeamwork() { return new fx_models_1.Guid("9f8b5841-8bcd-4de3-8000-c1f1c0deb062"); }
|
@@ -513,8 +534,18 @@ class WebComponentManifests {
|
|
513
534
|
static get SignOffRequestsRollupFilter_Type_Settings() { return new fx_models_1.Guid("688e5482-ec4b-45d1-ba0a-f20e783c0ce3"); }
|
514
535
|
static get SignOffRequestsRollupFilter_Type_Selection() { return new fx_models_1.Guid("aa32f8b8-df04-4934-be45-fd7394e9cc8d"); }
|
515
536
|
static get SignOffRequestsRollupFilter_Type_DefaultValueInput() { return new fx_models_1.Guid("b22476a7-e734-4e59-9525-e8547fa85d32"); }
|
537
|
+
static get SignOffRequestsRollupFilter_RequestedBy_Renderer() { return new fx_models_1.Guid("7bee6655-ec92-4c5c-b780-a332fd8342be"); }
|
538
|
+
static get SignOffRequestsRollupFilter_RequestedBy_Settings() { return new fx_models_1.Guid("f5a8c7a1-5be7-44b0-bd5a-d6f85cfd70e4"); }
|
539
|
+
static get SignOffRequestsRollupFilter_RequestedBy_Selection() { return new fx_models_1.Guid("28b644c7-fc09-4325-a361-8f6968c1c5f9"); }
|
540
|
+
static get SignOffRequestsRollupFilter_RequestedBy_DefaultValueInput() { return new fx_models_1.Guid("71418548-f409-42f4-b372-1d95d9ef5acf"); }
|
541
|
+
static get UserInformationBlockGroup() { return new fx_models_1.Guid("87ddfac4-0435-4da4-92f5-5173a4c86f19"); }
|
542
|
+
static get UserInformationBlockCore() { return new fx_models_1.Guid("f2067424-b6a9-4f40-b34b-cf71e7c93db8"); }
|
543
|
+
static get UserInformationBlockSettings() { return new fx_models_1.Guid("5f4d84f5-6d78-4be5-94b6-3f299d79b2aa"); }
|
544
|
+
static get UserInformationBlockSettingConfiguration() { return new fx_models_1.Guid("3fcfef27-9d19-435a-9745-f3006c5d3c7f"); }
|
545
|
+
static get UserInformationBlock() { return new fx_models_1.Guid("29f1772f-545e-4017-b9fa-d356c8192b66"); }
|
516
546
|
static get HttpCodeLayoutTenantJourney() { return new fx_models_1.Guid("a2b3a1be-68a8-49c2-8d60-5069174de7be"); }
|
517
547
|
static get HttpCodeLayoutBusinessProfileJourney() { return new fx_models_1.Guid("9b3a0a46-6267-48f3-b711-68bd16f62a66"); }
|
548
|
+
static get LoginScreenBlade() { return new fx_models_1.Guid("ecdcbe77-649d-423b-9f45-a2b3a4369a83"); }
|
518
549
|
}
|
519
550
|
exports.WebComponentManifests = WebComponentManifests;
|
520
551
|
class WebComponentElements {
|
@@ -34,12 +34,12 @@ export interface SharePointSearchResultItem extends SearchResultItem {
|
|
34
34
|
modifiedById: string;
|
35
35
|
editorOWSUSER: string;
|
36
36
|
webTemplate: string;
|
37
|
-
customPropertiesResult: {
|
38
|
-
[key: string]: string;
|
39
|
-
};
|
40
37
|
title: string;
|
41
38
|
path: string;
|
42
39
|
serverRedirectedUrl?: string;
|
40
|
+
customPropertiesResult: {
|
41
|
+
[key: string]: string;
|
42
|
+
};
|
43
43
|
}
|
44
44
|
export interface MicrosoftSearchResultItem extends SearchResultItem {
|
45
45
|
title: string;
|
@@ -0,0 +1,27 @@
|
|
1
|
+
import { IDataSourcePropertySelection } from "@omnia/fx/ux";
|
2
|
+
export interface AnalyticsDimensionMappings {
|
3
|
+
mappings: AnalyticsDimensionMapping[];
|
4
|
+
}
|
5
|
+
export interface AnalyticsDimensionMapping {
|
6
|
+
dimensionId: number;
|
7
|
+
mappedProperty: IDataSourcePropertySelection;
|
8
|
+
scope: AnalyticsDimensionScopes;
|
9
|
+
}
|
10
|
+
export interface AnalyticsDimension {
|
11
|
+
name: string;
|
12
|
+
id: number;
|
13
|
+
}
|
14
|
+
export interface AnalyticsDimensions {
|
15
|
+
visit: Array<AnalyticsDimension>;
|
16
|
+
action: Array<AnalyticsDimension>;
|
17
|
+
}
|
18
|
+
export interface AnalyticsScopeInfo {
|
19
|
+
scope: AnalyticsDimensionScopes;
|
20
|
+
numSlotsAvailable: number;
|
21
|
+
numSlotsUsed: number;
|
22
|
+
numSlotsLeft: number;
|
23
|
+
}
|
24
|
+
export declare enum AnalyticsDimensionScopes {
|
25
|
+
visit = 0,
|
26
|
+
action = 1
|
27
|
+
}
|
@@ -0,0 +1,8 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.AnalyticsDimensionScopes = void 0;
|
4
|
+
var AnalyticsDimensionScopes;
|
5
|
+
(function (AnalyticsDimensionScopes) {
|
6
|
+
AnalyticsDimensionScopes[AnalyticsDimensionScopes["visit"] = 0] = "visit";
|
7
|
+
AnalyticsDimensionScopes[AnalyticsDimensionScopes["action"] = 1] = "action";
|
8
|
+
})(AnalyticsDimensionScopes = exports.AnalyticsDimensionScopes || (exports.AnalyticsDimensionScopes = {}));
|
@@ -0,0 +1,7 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
const tslib_1 = require("tslib");
|
4
|
+
tslib_1.__exportStar(require("./analyticsdimensionmappings"), exports);
|
5
|
+
tslib_1.__exportStar(require("./analyticssettings"), exports);
|
6
|
+
tslib_1.__exportStar(require("./widgetmetadata"), exports);
|
7
|
+
tslib_1.__exportStar(require("./analyticsfiltersettings"), exports);
|
@@ -0,0 +1,19 @@
|
|
1
|
+
export interface WidgetCategoryInfo {
|
2
|
+
id: string;
|
3
|
+
name: string;
|
4
|
+
order: number;
|
5
|
+
widgets: WidgetInfo[];
|
6
|
+
}
|
7
|
+
export interface WidgetInfo {
|
8
|
+
name: string;
|
9
|
+
module: string;
|
10
|
+
action: string;
|
11
|
+
order: string;
|
12
|
+
parameters: {
|
13
|
+
string: string;
|
14
|
+
};
|
15
|
+
uniqueId: string;
|
16
|
+
isWide: boolean;
|
17
|
+
viewDataTable: string;
|
18
|
+
isReport: boolean;
|
19
|
+
}
|
@@ -1,4 +1,5 @@
|
|
1
1
|
import "./WorkplaceApi";
|
2
|
+
export * from "./BusinessProfileDallEPromptDefault";
|
2
3
|
export * from "./signoffrequest";
|
3
4
|
export * from "./forms";
|
4
5
|
export * from "./Workspace";
|
@@ -66,4 +67,5 @@ export * from "./searchstatistics";
|
|
66
67
|
export * from "./searchtoken";
|
67
68
|
export * from "./texttranslator";
|
68
69
|
export * from "./qrcode";
|
69
|
-
export * from "./
|
70
|
+
export * from "./DallESettingsPrompts";
|
71
|
+
export * from "./analytics";
|
@@ -3,6 +3,7 @@
|
|
3
3
|
Object.defineProperty(exports, "__esModule", { value: true });
|
4
4
|
const tslib_1 = require("tslib");
|
5
5
|
require("./WorkplaceApi");
|
6
|
+
tslib_1.__exportStar(require("./BusinessProfileDallEPromptDefault"), exports);
|
6
7
|
tslib_1.__exportStar(require("./signoffrequest"), exports);
|
7
8
|
tslib_1.__exportStar(require("./forms"), exports);
|
8
9
|
tslib_1.__exportStar(require("./Workspace"), exports);
|
@@ -70,4 +71,5 @@ tslib_1.__exportStar(require("./searchstatistics"), exports);
|
|
70
71
|
tslib_1.__exportStar(require("./searchtoken"), exports);
|
71
72
|
tslib_1.__exportStar(require("./texttranslator"), exports);
|
72
73
|
tslib_1.__exportStar(require("./qrcode"), exports);
|
73
|
-
tslib_1.__exportStar(require("./
|
74
|
+
tslib_1.__exportStar(require("./DallESettingsPrompts"), exports);
|
75
|
+
tslib_1.__exportStar(require("./analytics"), exports);
|
@@ -1,13 +1,16 @@
|
|
1
1
|
import { ISignOffRequestResource, SignOffResource, SignOffRequestResourceDetail, ISignOffRequestResourceDataSettings } from "./SignOffRequestResource";
|
2
2
|
import { SignOffRequestResourceProvider } from "./SignOffRequestResourceProvider";
|
3
|
-
import { ActionType } from "./SignOffRequestSettings";
|
3
|
+
import { ActionButtonSignOffRequestSettings, ActionType } from "./SignOffRequestSettings";
|
4
4
|
export declare abstract class SignOffRequestProvider<T extends SignOffResource = SignOffResource> extends SignOffRequestResourceProvider<T> {
|
5
5
|
abstract providerRenderer: (contentHeight?: string) => JSX.Element;
|
6
6
|
abstract itemRenderer: (item: ISignOffRequestResourceDataSettings) => JSX.Element;
|
7
|
+
abstract settingRenderer?: () => JSX.Element;
|
7
8
|
actionButtonHandler: ActionType;
|
8
9
|
resolveResourceData: (itemId: string) => Promise<SignOffRequestResourceDetail>;
|
9
10
|
resolveToken: (tokenField: string, itemId: string) => string;
|
10
11
|
ensureItemsLoaded: (itemIds: string[]) => Promise<void>;
|
11
12
|
onSelectResource?: (resource: Array<ISignOffRequestResource>) => void;
|
12
13
|
getDefaultResources(): Array<ISignOffRequestResource>;
|
14
|
+
isEnabled(settings: ActionButtonSignOffRequestSettings): Promise<boolean>;
|
15
|
+
ensureActionHandlerSettings?: (settings: ActionButtonSignOffRequestSettings, updateSettings?: (settings: ActionButtonSignOffRequestSettings) => void) => void;
|
13
16
|
}
|
@@ -10,5 +10,10 @@ class SignOffRequestProvider extends SignOffRequestResourceProvider_1.SignOffReq
|
|
10
10
|
getDefaultResources() {
|
11
11
|
return [];
|
12
12
|
}
|
13
|
+
isEnabled(settings) {
|
14
|
+
return new Promise((resolve, reject) => {
|
15
|
+
resolve(true);
|
16
|
+
});
|
17
|
+
}
|
13
18
|
}
|
14
19
|
exports.SignOffRequestProvider = SignOffRequestProvider;
|
@@ -1,13 +1,14 @@
|
|
1
|
-
import { Identity, IPagingable
|
1
|
+
import { Identity, IPagingable } from "@omnia/fx/models";
|
2
2
|
import { SignOffRequestEnums } from "./SignOffRequestEnum";
|
3
|
+
import { SignOffRequestRollupFilter } from "./SignOffRequestRollupBlockSettings";
|
3
4
|
export interface SignOffRequestQuery extends IPagingable {
|
4
|
-
status?: SignOffRequestEnums.SignOffRequestStatus
|
5
|
+
status?: Array<SignOffRequestEnums.SignOffRequestStatus>;
|
5
6
|
progress?: SignOffRequestEnums.SignOffRequestProgress;
|
6
7
|
requestedBy?: Array<Identity>;
|
7
8
|
requestedTo?: Array<Identity>;
|
8
9
|
orderBy?: SignOffRequestQueryOrderBy;
|
9
|
-
queryFilters?:
|
10
|
-
uiFilters?:
|
10
|
+
queryFilters?: SignOffRequestRollupFilter[];
|
11
|
+
uiFilters?: SignOffRequestRollupFilter[];
|
11
12
|
keyWord?: string;
|
12
13
|
keywordFilterOnProperties?: string[];
|
13
14
|
selectEnterpriseProperties?: string[];
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { BaseFilterEngineProperty, FilterEngineSettings, GuidValue, MultilingualString, OrderBy, PropertyIndexedType, RollupEnums, RollupFilter, RollupFilterValue, SpacingSettings, TypedFilterEnginePropertyOutput } from "@omnia/fx/models";
|
1
|
+
import { BaseFilterEngineProperty, FilterEngineSettings, GuidValue, MultilingualString, OrderBy, PropertyIndexedType, RollupEnums, RollupFilter, RollupFilterValue, RollupOtherTypes, SpacingSettings, TypedFilterEnginePropertyOutput } from "@omnia/fx/models";
|
2
2
|
import { SignOffRequestRollupViewComponentSettings } from "./SignOffRequestRollupViewSettings";
|
3
3
|
export interface SignOffRequestRollupBlockSettings {
|
4
4
|
title: MultilingualString;
|
@@ -9,7 +9,7 @@ export interface SignOffRequestRollupBlockSettings {
|
|
9
9
|
}
|
10
10
|
export interface SignOffRequestRollupBlockQuerySettings {
|
11
11
|
queryScope: SignOffRequestScopedQueryTypes;
|
12
|
-
filters:
|
12
|
+
filters: SignOffRequestRollupFilter[];
|
13
13
|
}
|
14
14
|
export interface SignOffRequestRollupBlockDisplaySettings {
|
15
15
|
selectedDisplayView: SignOffRequestRollupViewRegistrationSettings;
|
@@ -84,3 +84,9 @@ export interface TypeFilterEngineProperty extends BaseFilterEngineProperty {
|
|
84
84
|
export interface TypePropFilterValue extends RollupFilterValue {
|
85
85
|
value: Array<GuidValue>;
|
86
86
|
}
|
87
|
+
export interface ExtendedPropFilterValue extends RollupFilterValue {
|
88
|
+
value: Array<any>;
|
89
|
+
}
|
90
|
+
export type SignOffRequestRollupFilter = Omit<RollupFilter, "type"> & {
|
91
|
+
type: PropertyIndexedType | RollupOtherTypes.TextSearches;
|
92
|
+
};
|
@@ -11,5 +11,5 @@ export interface ActionButtonSignOffRequestSettings extends IActionHandlerSettin
|
|
11
11
|
export interface ActionType {
|
12
12
|
id: GuidValue;
|
13
13
|
title: string;
|
14
|
-
clickHandler?: () => Promise<void>;
|
14
|
+
clickHandler?: (settings: ActionButtonSignOffRequestSettings) => Promise<void>;
|
15
15
|
}
|
@@ -42,6 +42,7 @@ export declare const AnnouncementJourneyStyle: {
|
|
42
42
|
imageTag?: types.NestedCSSProperties;
|
43
43
|
editingTrStyle?: types.NestedCSSProperties;
|
44
44
|
inlineIconsStyle?: types.NestedCSSProperties;
|
45
|
+
identityRenderStyle?: types.NestedCSSProperties;
|
45
46
|
};
|
46
47
|
export declare const AnnouncementCommentLikeStyle: {
|
47
48
|
body?: types.NestedCSSProperties;
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { SpacingSettings, GuidValue, RollupFilter, RollupEnums, RollupSetting, PersonPropFilterValue, BooleanPropFilterValue, TextPropFilterValue, TaxonomyPropFilterValue, DatePropFilterValue, TexSearchestPropFilterValue, MultilingualString, MediaPickerImage, FilterEngineSettings } from "@omnia/fx-models";
|
1
|
+
import { SpacingSettings, GuidValue, RollupFilter, RollupEnums, RollupSetting, PersonPropFilterValue, BooleanPropFilterValue, TextPropFilterValue, TaxonomyPropFilterValue, DatePropFilterValue, TexSearchestPropFilterValue, MultilingualString, MediaPickerImage, FilterEngineSettings, RollupMetricSettings } from "@omnia/fx-models";
|
2
2
|
import { TeamCollaborationRollupScopeTypes } from ".";
|
3
3
|
import { AppEnums } from "../apps";
|
4
4
|
export declare const TeamCollaborationConstants: {
|
@@ -86,12 +86,13 @@ export interface TeamCollaborationRollupQuery extends RollupSetting {
|
|
86
86
|
currentBusinessProfile?: boolean;
|
87
87
|
trimByRoleId?: GuidValue;
|
88
88
|
searchProperties?: Array<string>;
|
89
|
+
showMetric?: boolean;
|
89
90
|
}
|
90
91
|
export declare enum TeamCollaborationRollupLinkBehavior {
|
91
92
|
OpenTeamwork = 0,
|
92
93
|
OpenLayout = 1
|
93
94
|
}
|
94
|
-
export interface TeamCollaborationRollupBlockSettings extends TeamCollaborationRollupQuery {
|
95
|
+
export interface TeamCollaborationRollupBlockSettings extends TeamCollaborationRollupQuery, RollupMetricSettings {
|
95
96
|
selectedViewId: string;
|
96
97
|
viewSettings: TeamCollaborationRollupViewSettings;
|
97
98
|
title: MultilingualString;
|