@omnia/workplace 7.6.30-preview → 7.6.30
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/analyticsFilterLocalize.d.ts +32 -0
- package/internal-do-not-import-from-here/core/loc/analyticsFilterLocalize.manifest.d.ts +1 -0
- package/internal-do-not-import-from-here/core/loc/formLocalize.d.ts +29 -6
- 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/Constants.d.ts +10 -1
- package/internal-do-not-import-from-here/models/Constants.js +11 -2
- package/internal-do-not-import-from-here/models/ManifestIds.d.ts +25 -1
- package/internal-do-not-import-from-here/models/ManifestIds.js +25 -1
- package/internal-do-not-import-from-here/models/Secrets.d.ts +2 -0
- package/internal-do-not-import-from-here/models/SharedLink.d.ts +55 -1
- package/internal-do-not-import-from-here/models/SharedLink.js +19 -0
- package/internal-do-not-import-from-here/models/analytics/analyticsdimensionmappings.d.ts +5 -0
- package/internal-do-not-import-from-here/models/analytics/analyticsfiltersettings.d.ts +13 -0
- package/internal-do-not-import-from-here/models/apps/Enums.d.ts +2 -1
- package/internal-do-not-import-from-here/models/apps/Enums.js +1 -0
- package/internal-do-not-import-from-here/models/forms/Form.d.ts +20 -9
- package/internal-do-not-import-from-here/models/forms/Form.js +12 -2
- package/internal-do-not-import-from-here/models/forms/FormLayout.d.ts +1 -0
- package/internal-do-not-import-from-here/models/forms/FormQuery.d.ts +1 -0
- package/internal-do-not-import-from-here/models/forms/FormTemplate.d.ts +7 -0
- package/internal-do-not-import-from-here/models/forms/FormType.d.ts +5 -0
- package/internal-do-not-import-from-here/models/forms/components/FormRollupBlockSettings.d.ts +26 -2
- package/internal-do-not-import-from-here/models/forms/components/FormRollupConstant.d.ts +3 -0
- package/internal-do-not-import-from-here/models/forms/components/FormRollupConstant.js +4 -1
- package/internal-do-not-import-from-here/models/forms/components/FormRollupStyle.d.ts +0 -2
- package/internal-do-not-import-from-here/models/forms/components/index.d.ts +2 -3
- package/internal-do-not-import-from-here/models/forms/components/index.js +2 -3
- package/internal-do-not-import-from-here/models/mediapicker/MediaPickerProviderContext.d.ts +3 -3
- package/internal-do-not-import-from-here/models/mediapicker/MediaPickerProviderContext.js +4 -2
- package/internal-do-not-import-from-here/models/signoffrequest/SignOffRequestRecurrence.d.ts +20 -5
- package/internal-do-not-import-from-here/models/signoffrequest/SignOffRequestRecurrence.js +5 -0
- package/internal-do-not-import-from-here/models/signoffrequest/SignOffRequestRecurrenceQuery.d.ts +10 -0
- package/internal-do-not-import-from-here/models/signoffrequest/SignOffRequestTemplate.d.ts +10 -1
- package/internal-do-not-import-from-here/models/signoffrequest/request/SignOffRequestTemplateCreateModel.d.ts +2 -1
- package/internal-do-not-import-from-here/services/AnalyticsFilterService.d.ts +13 -0
- package/internal-do-not-import-from-here/services/AnalyticsStoreService.d.ts +3 -1
- package/internal-do-not-import-from-here/services/forms/FormService.d.ts +3 -1
- package/internal-do-not-import-from-here/services/forms/FormTemplateService.d.ts +2 -0
- package/internal-do-not-import-from-here/services/forms/FormTypeService.d.ts +1 -0
- package/internal-do-not-import-from-here/services/index.d.ts +2 -0
- package/internal-do-not-import-from-here/services/mylinks/MyLinkService.d.ts +10 -0
- package/internal-do-not-import-from-here/services/mylinks/RecentLinksService.d.ts +7 -0
- package/internal-do-not-import-from-here/services/mylinks/SharedLinksService.d.ts +12 -0
- package/internal-do-not-import-from-here/services/mylinks/index.d.ts +3 -0
- package/internal-do-not-import-from-here/stores/AnalyticsFilterStore.d.ts +2 -2
- package/internal-do-not-import-from-here/stores/AnalyticsStore.d.ts +7 -1
- package/internal-do-not-import-from-here/stores/CurrentFormStore.d.ts +3 -0
- package/internal-do-not-import-from-here/stores/LinkStore.d.ts +74 -0
- package/internal-do-not-import-from-here/stores/SignOffRequestStore.d.ts +1 -0
- package/internal-do-not-import-from-here/stores/forms/FormStore.d.ts +2 -1
- package/internal-do-not-import-from-here/stores/index.d.ts +1 -0
- package/package.json +1 -1
- package/internal-do-not-import-from-here/models/forms/components/FormViewComponentSettings.d.ts +0 -11
- /package/internal-do-not-import-from-here/models/{forms/components/FormViewComponentSettings.js → signoffrequest/SignOffRequestRecurrenceQuery.js} +0 -0
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
export declare module AnalyticsFilterLocalization {
|
|
2
|
+
const namespace = "OmniaWorkplace.AnalyticsFilter";
|
|
3
|
+
interface locInterface {
|
|
4
|
+
Periods: {
|
|
5
|
+
Day: string;
|
|
6
|
+
Week: string;
|
|
7
|
+
Month: string;
|
|
8
|
+
Year: string;
|
|
9
|
+
};
|
|
10
|
+
EndPosition: {
|
|
11
|
+
Day: {
|
|
12
|
+
Today: string;
|
|
13
|
+
Yesterday: string;
|
|
14
|
+
TodayPrevYear: string;
|
|
15
|
+
YesterdayPrevYear: string;
|
|
16
|
+
};
|
|
17
|
+
Week: {
|
|
18
|
+
ThisWeek: string;
|
|
19
|
+
LastWeek: string;
|
|
20
|
+
ThisWeekPrevYear: string;
|
|
21
|
+
LastWeekPrevYear: string;
|
|
22
|
+
};
|
|
23
|
+
Month: {
|
|
24
|
+
ThisMonth: string;
|
|
25
|
+
LastMonth: string;
|
|
26
|
+
ThisMonthPrevYear: string;
|
|
27
|
+
LastMonthPrevYear: string;
|
|
28
|
+
};
|
|
29
|
+
Custom: string;
|
|
30
|
+
};
|
|
31
|
+
}
|
|
32
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -12,8 +12,10 @@ export declare module FormsLocalization {
|
|
|
12
12
|
Template: string;
|
|
13
13
|
Question: string;
|
|
14
14
|
AddQuestion: string;
|
|
15
|
+
DeleteQuestion: string;
|
|
15
16
|
Option: string;
|
|
16
17
|
CreateForm: string;
|
|
18
|
+
ExportToExcel: string;
|
|
17
19
|
LimitResponseTime: {
|
|
18
20
|
Title: string;
|
|
19
21
|
BeforeStartTimeMessage: string;
|
|
@@ -21,7 +23,9 @@ export declare module FormsLocalization {
|
|
|
21
23
|
};
|
|
22
24
|
Scope: {
|
|
23
25
|
Title: string;
|
|
24
|
-
|
|
26
|
+
CurrentApp: string;
|
|
27
|
+
CurrentBusinessProfile: string;
|
|
28
|
+
Deleted: string;
|
|
25
29
|
};
|
|
26
30
|
ScopeType: {
|
|
27
31
|
Title: string;
|
|
@@ -29,8 +33,6 @@ export declare module FormsLocalization {
|
|
|
29
33
|
BusinessProfile: string;
|
|
30
34
|
};
|
|
31
35
|
ActionButton: {
|
|
32
|
-
AllowMultiQuestions: string;
|
|
33
|
-
ShowFormSettings: string;
|
|
34
36
|
AddQuestion: string;
|
|
35
37
|
};
|
|
36
38
|
Admin: {
|
|
@@ -50,7 +52,6 @@ export declare module FormsLocalization {
|
|
|
50
52
|
};
|
|
51
53
|
};
|
|
52
54
|
EditForm: {
|
|
53
|
-
Open: string;
|
|
54
55
|
OneResponsePerPerson: string;
|
|
55
56
|
MakeResponsesAnonymous: string;
|
|
56
57
|
EnableShowResponse: string;
|
|
@@ -69,6 +70,9 @@ export declare module FormsLocalization {
|
|
|
69
70
|
ShowUserResponse: string;
|
|
70
71
|
ShowAllResponses: string;
|
|
71
72
|
UneditableForm: string;
|
|
73
|
+
WhenClosed: string;
|
|
74
|
+
AllowMultiQuestions: string;
|
|
75
|
+
ShowFormSettings: string;
|
|
72
76
|
};
|
|
73
77
|
Editor: {
|
|
74
78
|
AddOtherOption: string;
|
|
@@ -80,7 +84,7 @@ export declare module FormsLocalization {
|
|
|
80
84
|
UserDefined: string;
|
|
81
85
|
ShowLayoutView: string;
|
|
82
86
|
ShowQuestionView: string;
|
|
83
|
-
|
|
87
|
+
OnlyEditInAdmin: string;
|
|
84
88
|
Other: string;
|
|
85
89
|
};
|
|
86
90
|
StatisticForm: {
|
|
@@ -94,7 +98,7 @@ export declare module FormsLocalization {
|
|
|
94
98
|
DeleteFormMessage: string;
|
|
95
99
|
};
|
|
96
100
|
Validation: {
|
|
97
|
-
|
|
101
|
+
EndDateMustBeGreaterThanStartDate: string;
|
|
98
102
|
};
|
|
99
103
|
CustomChartColors: string;
|
|
100
104
|
Templates: string;
|
|
@@ -102,11 +106,13 @@ export declare module FormsLocalization {
|
|
|
102
106
|
RemoveFormTemplateConfirmation: {
|
|
103
107
|
Title: string;
|
|
104
108
|
Message: string;
|
|
109
|
+
ErrorMessageWithTemplateIsInUse: string;
|
|
105
110
|
};
|
|
106
111
|
PropertySet: string;
|
|
107
112
|
RemoveFormTypeConfirmation: {
|
|
108
113
|
Title: string;
|
|
109
114
|
Message: string;
|
|
115
|
+
ErrorMessageTypeInUse: string;
|
|
110
116
|
};
|
|
111
117
|
Scope: string;
|
|
112
118
|
QueryScope: {
|
|
@@ -129,6 +135,7 @@ export declare module FormsLocalization {
|
|
|
129
135
|
ShowResponse: string;
|
|
130
136
|
CloseResponse: string;
|
|
131
137
|
ShowFormTitle: string;
|
|
138
|
+
ShowFormImage: string;
|
|
132
139
|
StatisticNotSupported: string;
|
|
133
140
|
SaveForLater: string;
|
|
134
141
|
};
|
|
@@ -180,9 +187,25 @@ export declare module FormsLocalization {
|
|
|
180
187
|
DragAndDrop: string;
|
|
181
188
|
};
|
|
182
189
|
};
|
|
190
|
+
FilterEngine: {
|
|
191
|
+
ContextProperties: {
|
|
192
|
+
Scope: string;
|
|
193
|
+
StartDate: string;
|
|
194
|
+
EndDate: string;
|
|
195
|
+
Status: string;
|
|
196
|
+
BusinessProfile: string;
|
|
197
|
+
AppInstance: string;
|
|
198
|
+
};
|
|
199
|
+
};
|
|
183
200
|
Status: string;
|
|
184
201
|
ErrorMessages: {
|
|
185
202
|
Unauthorized: string;
|
|
186
203
|
};
|
|
204
|
+
Answer: string;
|
|
205
|
+
UserAnswer: string;
|
|
206
|
+
Point: string;
|
|
207
|
+
UserDisplayName: string;
|
|
208
|
+
CreatedAt: string;
|
|
209
|
+
CreatedBy: string;
|
|
187
210
|
}
|
|
188
211
|
}
|
|
@@ -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":["AnalyticsService","AppAuthenticationOptionsService","FormService","FormTemplateService","FormTypeService","HomeService","NotificationPanelHistoryService","PromotedSearchResultService","SearchCategoryService","SearchFeedbackService","SignOffRequestService","TeamCollaborationService"]},"./node_modules/@omnia/workplace/index.js":{"id":"8bf93338-8e70-4104-a75d-ae11485eec04","buildMeta":{"exportsType":"namespace"},"expo.js":["AdminNamespace","AnalyticsFilterStore","AnalyticsService","AnalyticsStore","AppAuthenticationOptionsService","AppRendererBootstrapper","CurrentFormStore","DialogHelper","EditingThemeStore","FilterValueProvider","FormService","FormStore","FormTemplateService","FormTemplateStore","FormTypeService","FormTypeStore","GovernanceDashboardStore","HomeService","LinkHandlerDialogStore","NotificationPanelHistoryService","NotificationPanelStore","NotificationPanelStorePluginProvider","PromotedSearchResultService","PromotedSearchResultStore","SearchCategoryService","SearchCategoryStore","SearchFeedbackService","SearchTokenStore","SignOffRequestService","SignOffRequestStore","SignOffRequestUtils","Styles","TeamCollaborationService","TeamCollaborationStore","TeamworkContext","TeamworkTopics","Topics","WorkPlaceUtils","dialogStyle","settingsTabContainer"]},"./node_modules/@omnia/workplace/models/index.js":{"id":"c778308f-5fbb-4a3d-8691-ad7408ffbd56","buildMeta":{"exportsType":"namespace"},"expo.js":["ActionMenuStyles","AdvancedSearchSettingsStyles","AdvancedSearchStyles","AnalyticsDimensionScopes","AnnouncementCommentLikeStyle","AnnouncementJourneyStyle","AnnouncementStyles","AppEnums","AppIconSearchTemplateStyles","AppIconStyles","AppInstanceDescriptionProperties","AppLaunchStyles","AppLaunchViewStyles","AppProvisioningSteps","BuiltInActionButtonHandlers","BusinessProfileAnalyticsSettings","BusinessProfileAppProvisioning","BusinessProfileDallEPromptDefaultSettings","CentralImageLocationsStyles","ChartColor","CompactHeaderStyles","Constants","CreateTeamworkSettingsStyles","DallESettingsPrompts","DefaultSearchTemplateStyles","DocumentDirectionSettingsStyles","EditModes","EnterpriseGlossaryAdminProvider","EnterpriseGlossaryInformationSettingsProvider","EnterpriseGlossaryInformationSourceSettingsProvider","EnterpriseGlossaryTaxonomyNavigationDisplayProvider","EnterpriseGlossaryTaxonomyNavigationSettingsProvider","EnterprisePropertyCategoriesDefaultBladeStyles","Enums","FeedType","FilterValue","FollowedsitesUpdatedAtUserPropertyBag","FooterPositions","FooterSettingStyles","FormDialogStyles","FormGenericSetting","FormLayoutProvider","FormQueryScopes","FormRollupBlockGeneralTabStyles","FormRollupConstants","FormRollupMainRendererStyles","FormStatus","FormTypes","GovernanceDashboard","GovernanceDashboardSettingsStyles","GovernanceDashboardStyles","GroupManifests","GroupMembershipMappingBladeStyles","HeaderSettingsMode","HeaderStyles","HighPriorityAnnouncementStyle","HomeLayoutDefinition","HorizontalActionMenuStyles","HorizontalMegaMenuStyles","ItemQueryResult","JumpToContentStyles","LegendAlignment","LegendPosition","LinkHandlerSettingsStyles","LinkUrlTypeOption","LocalizationAdminStyles","LocalizationInputStyles","LogoStyles","MSTeamChannelFeedSorting","MSTeamTemplateStep","MediaPickerStorageProviderWorkplaceFaviconContext","MediaPickerStorageProviderWorkplaceFormContext","MediaPickerStorageProviderWorkplaceLogoContext","MediaPickerStorageProviderWorkplacePromotedSearchResultContext","MediaPickerStorageProviderWorkplaceSearchFeedbackContext","MediaPickerStorageProviderWorkplaceTutorialContext","MegaMenuLayoutDefinition","MembersStep","MobileMegaMenuStyles","MyLinksStyles","MySitesEnums","MySitesStyles","MyTeamCollaborationCategoryStyles","MyTeamCollaborationStyles","NewTeamworksTimeType","NotificationConstants","NotificationPanelDisplayModes","NotificationPanelHeaderStyles","NotificationPanelIconPosition","NotificationPanelSettingsStyles","NotificationPanelStyles","NotificationPanelTabAligments","NotificationTypes","OmniaSystemLanguageSettingsStyles","OptionTypes","PeopleRollupFilterEngineContextPropertyTypes","PostsFeedScopeOption","PostsFeedSortMode","PromotedSearchResultStatus","QRCodeStyles","QuestionTypes","QuickSearchStyles","ReCaptChaSecretFormNames","ResourceManifests","ScopeCurrentId","SearchAdminStyles","SearchBlockStyles","SearchHeaderStyles","SearchProvider","SearchStatistics","SearchStatisticsMetricScopeFilterValue","SearchTokenProvider","ServiceDefinition","SettingsKeys","SetupWizard","SetupWizardScope","SetupWizardTemplateFeatureHandler","SetupWizardTemplateProvider","SharedLinkSortByTypes","ShowMoreStyles","SignOffRequestEnums","SignOffRequestInfoPersistentDialogId","SignOffRequestProvider","SignOffRequestResourceProvider","SignOffRequestRollupConstants","SignOffRequestScopedQueryTypes","SignOffResource","SimpleListStyles","SimpleListingSearchTemplateStyles","SlideRendererStyles","StatisticViewMode","StatusCodeDisplay","StatusCodeStorageProviderWorkplaceContext","TabCustomUrlType","TableNames","TargetingPropertyStyles","TaxonomyNavigationDisplayProviderBase","TaxonomyNavigationStyles","TeamCollaborationAppDefinitionInfo","TeamCollaborationAppEnterpriseProperties","TeamCollaborationConstants","TeamCollaborationRollupBlockListViewSettingsStyles","TeamCollaborationRollupBlockListViewStyles","TeamCollaborationRollupBlockSettingsStyles","TeamCollaborationRollupBlockStyles","TeamCollaborationRollupEnums","TeamCollaborationRollupLinkBehavior","TeamCollaborationRollupScopeTypes","TeamCollabrationApp","TeamCollabrationAppResource","TeamCollabrationQuery","TeamCollabrationTypes","TeamNewsBlockStyles","TeamNewsRollupSettingElementName","TeamSiteEditPropertiesStyles","TeamWorkInfo","TeamworkAppLayoutDefinition","TeamworkNavigationActionHandlerSettingStyles","TeamworkNavigationSettingStyles","TeamworkNavigationStyles","TeamworkTemplateFilterValue","TenantRegionalStyles","TenantReusableContentManifests","TermNodeStyles","UserAccessibilitySettingsStyles","UserMenuStyles","VerticalActionMenuStyles","VerticalMegaMenuStyles","WPRoleDefinition","WebComponentElements","WebComponentManifests","WizardSetupConstant","WorkplaceAppRoutePrefix","WorkplaceHomeStyles","WorkplaceSharedStyles","WorkspaceActionMenuMapping","WorkspaceActionMenuSettings","WorkspaceApp","WorkspaceFactory","WorkspaceHomeMapping","WorkspaceHomeSettings","WorkspaceInfo","WorkspaceMegaMenuItemTypes","WorkspaceMegaMenuMapping","WorkspaceMegaMenuSettings","WorkspaceVerticalNavWidth","WowrkplaceHeadingStyles","formDialogFooterHeight","formDialogHeaderHeight","notificationPanelLayoutProvider","reCaptchaSecretKey"]}}}
|
|
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":["AnalyticsFilterService","AnalyticsService","AppAuthenticationOptionsService","FormService","FormTemplateService","FormTypeService","HomeService","MyLinksService","NotificationPanelHistoryService","PromotedSearchResultService","RecentLinksService","SearchCategoryService","SearchFeedbackService","SharedLinksService","SignOffRequestService","TeamCollaborationService"]},"./node_modules/@omnia/workplace/index.js":{"id":"8bf93338-8e70-4104-a75d-ae11485eec04","buildMeta":{"exportsType":"namespace"},"expo.js":["AdminNamespace","AnalyticsFilterService","AnalyticsFilterStore","AnalyticsService","AnalyticsStore","AppAuthenticationOptionsService","AppRendererBootstrapper","CurrentFormStore","DialogHelper","EditingThemeStore","FilterValueProvider","FormService","FormStore","FormTemplateService","FormTemplateStore","FormTypeService","FormTypeStore","GovernanceDashboardStore","HomeService","LinkHandlerDialogStore","LinkStore","MyLinksService","NotificationPanelHistoryService","NotificationPanelStore","NotificationPanelStorePluginProvider","PromotedSearchResultService","PromotedSearchResultStore","RecentLinksService","SearchCategoryService","SearchCategoryStore","SearchFeedbackService","SearchTokenStore","SharedLinksService","SignOffRequestService","SignOffRequestStore","SignOffRequestUtils","Styles","TeamCollaborationService","TeamCollaborationStore","TeamworkContext","TeamworkTopics","Topics","WorkPlaceUtils","dialogStyle","settingsTabContainer"]},"./node_modules/@omnia/workplace/models/index.js":{"id":"c778308f-5fbb-4a3d-8691-ad7408ffbd56","buildMeta":{"exportsType":"namespace"},"expo.js":["ActionMenuStyles","AdvancedSearchSettingsStyles","AdvancedSearchStyles","AnalyticsDimensionScopes","AnnouncementCommentLikeStyle","AnnouncementJourneyStyle","AnnouncementStyles","AppEnums","AppIconSearchTemplateStyles","AppIconStyles","AppInstanceDescriptionProperties","AppLaunchStyles","AppLaunchViewStyles","AppProvisioningSteps","BuiltInActionButtonHandlers","BusinessProfileAnalyticsSettings","BusinessProfileAppProvisioning","BusinessProfileDallEPromptDefaultSettings","CentralImageLocationsStyles","ChangeTypes","ChartColor","CompactHeaderStyles","Constants","CreateTeamworkSettingsStyles","DallESettingsPrompts","DefaultSearchTemplateStyles","DocumentDirectionSettingsStyles","EditModes","EnterpriseGlossaryAdminProvider","EnterpriseGlossaryInformationSettingsProvider","EnterpriseGlossaryInformationSourceSettingsProvider","EnterpriseGlossaryTaxonomyNavigationDisplayProvider","EnterpriseGlossaryTaxonomyNavigationSettingsProvider","EnterprisePropertyCategoriesDefaultBladeStyles","Enums","FeedType","FilterValue","FollowedsitesUpdatedAtUserPropertyBag","FooterPositions","FooterSettingStyles","FormDialogStyles","FormDisplayStatus","FormGenericSetting","FormLayoutProvider","FormQueryScopes","FormRollupBlockGeneralTabStyles","FormRollupConstants","FormRollupFilterEngineContextPropertyTypes","FormRollupMainRendererStyles","FormScopeTypes","FormStatus","FormTypes","GovernanceDashboard","GovernanceDashboardSettingsStyles","GovernanceDashboardStyles","GroupManifests","GroupMembershipMappingBladeStyles","HeaderSettingsMode","HeaderStyles","HighPriorityAnnouncementStyle","HomeLayoutDefinition","HorizontalActionMenuStyles","HorizontalMegaMenuStyles","ItemQueryResult","JumpToContentStyles","LegendAlignment","LegendPosition","LinkHandlerSettingsStyles","LinkUrlTypeOption","LinkViewMode","LocalizationAdminStyles","LocalizationInputStyles","LogoStyles","MSTeamChannelFeedSorting","MSTeamTemplateStep","MediaPickerStorageProviderWorkplaceFaviconContext","MediaPickerStorageProviderWorkplaceFormContext","MediaPickerStorageProviderWorkplaceLogoContext","MediaPickerStorageProviderWorkplacePromotedSearchResultContext","MediaPickerStorageProviderWorkplaceSearchFeedbackContext","MediaPickerStorageProviderWorkplaceTutorialContext","MegaMenuLayoutDefinition","MembersStep","MobileMegaMenuStyles","MyLinksStyles","MySitesEnums","MySitesStyles","MyTeamCollaborationCategoryStyles","MyTeamCollaborationStyles","NewTeamworksTimeType","NotificationConstants","NotificationPanelDisplayModes","NotificationPanelHeaderStyles","NotificationPanelIconPosition","NotificationPanelSettingsStyles","NotificationPanelStyles","NotificationPanelTabAligments","NotificationTypes","OmniaSystemLanguageSettingsStyles","OptionTypes","PeopleRollupFilterEngineContextPropertyTypes","PostsFeedScopeOption","PostsFeedSortMode","PromotedSearchResultStatus","QRCodeStyles","QuestionTypes","QuickSearchStyles","ReCaptChaSecretFormNames","RecurringRequestProgressStatus","ResourceManifests","ScopeCurrentId","SearchAdminStyles","SearchBlockStyles","SearchHeaderStyles","SearchProvider","SearchStatistics","SearchStatisticsMetricScopeFilterValue","SearchTokenProvider","ServiceDefinition","SettingsKeys","SetupWizard","SetupWizardScope","SetupWizardTemplateFeatureHandler","SetupWizardTemplateProvider","SharedLinkSortByTypes","ShowMoreStyles","SignOffRequestEnums","SignOffRequestInfoPersistentDialogId","SignOffRequestProvider","SignOffRequestResourceProvider","SignOffRequestRollupConstants","SignOffRequestScopedQueryTypes","SignOffResource","SimpleListStyles","SimpleListingSearchTemplateStyles","SlideRendererStyles","SortedByType","StatisticViewMode","StatusCodeDisplay","StatusCodeStorageProviderWorkplaceContext","TabCustomUrlType","TableNames","TargetingPropertyStyles","TaxonomyNavigationDisplayProviderBase","TaxonomyNavigationStyles","TeamCollaborationAppDefinitionInfo","TeamCollaborationAppEnterpriseProperties","TeamCollaborationConstants","TeamCollaborationRollupBlockListViewSettingsStyles","TeamCollaborationRollupBlockListViewStyles","TeamCollaborationRollupBlockSettingsStyles","TeamCollaborationRollupBlockStyles","TeamCollaborationRollupEnums","TeamCollaborationRollupLinkBehavior","TeamCollaborationRollupScopeTypes","TeamCollabrationApp","TeamCollabrationAppResource","TeamCollabrationQuery","TeamCollabrationTypes","TeamNewsBlockStyles","TeamNewsRollupSettingElementName","TeamSiteEditPropertiesStyles","TeamWorkInfo","TeamworkAppLayoutDefinition","TeamworkNavigationActionHandlerSettingStyles","TeamworkNavigationSettingStyles","TeamworkNavigationStyles","TeamworkTemplateFilterValue","TenantRegionalStyles","TenantReusableContentManifests","TermNodeStyles","UserAccessibilitySettingsStyles","UserMenuStyles","VerticalActionMenuStyles","VerticalMegaMenuStyles","WPRoleDefinition","WebComponentElements","WebComponentManifests","WizardSetupConstant","WorkplaceAppRoutePrefix","WorkplaceHomeStyles","WorkplaceSharedStyles","WorkspaceActionMenuMapping","WorkspaceActionMenuSettings","WorkspaceApp","WorkspaceFactory","WorkspaceHomeMapping","WorkspaceHomeSettings","WorkspaceInfo","WorkspaceMegaMenuItemTypes","WorkspaceMegaMenuMapping","WorkspaceMegaMenuSettings","WorkspaceVerticalNavWidth","WowrkplaceHeadingStyles","formDialogFooterHeight","formDialogHeaderHeight","notificationPanelLayoutProvider","reCaptchaSecretKey"]}}}
|
|
@@ -26,6 +26,7 @@ export declare const Constants: {
|
|
|
26
26
|
analyticsBusinessProfile: string;
|
|
27
27
|
msTeamsPushNotification: string;
|
|
28
28
|
teamworkProperties: string;
|
|
29
|
+
signOffRequest: string;
|
|
29
30
|
};
|
|
30
31
|
themingNavigationNodeKey: string;
|
|
31
32
|
themeIds: {
|
|
@@ -263,6 +264,14 @@ export declare const ReCaptChaSecretFormNames: {
|
|
|
263
264
|
readonly secretkey: "secretkey";
|
|
264
265
|
};
|
|
265
266
|
export declare const PeopleRollupFilterEngineContextPropertyTypes: {
|
|
266
|
-
|
|
267
|
+
scope: Guid;
|
|
268
|
+
scopeType: Guid;
|
|
267
269
|
userType: Guid;
|
|
268
270
|
};
|
|
271
|
+
export declare const FormRollupFilterEngineContextPropertyTypes: {
|
|
272
|
+
appInstance: Guid;
|
|
273
|
+
businessProfile: Guid;
|
|
274
|
+
startDate: Guid;
|
|
275
|
+
endDate: Guid;
|
|
276
|
+
status: Guid;
|
|
277
|
+
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.PeopleRollupFilterEngineContextPropertyTypes = 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;
|
|
3
|
+
exports.FormRollupFilterEngineContextPropertyTypes = exports.PeopleRollupFilterEngineContextPropertyTypes = 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 = {
|
|
@@ -30,6 +30,7 @@ exports.Constants = {
|
|
|
30
30
|
analyticsBusinessProfile: "9c76c51c-e3a7-44b3-9c10-c12914834b2c",
|
|
31
31
|
msTeamsPushNotification: "d2542bf4-942f-4732-b9fc-0bfc6472180b",
|
|
32
32
|
teamworkProperties: "af763ba5-c028-48ff-abf2-c272920170d8",
|
|
33
|
+
signOffRequest: "51318721-4c03-43c6-950f-ccad11dbc9e0",
|
|
33
34
|
},
|
|
34
35
|
themingNavigationNodeKey: "50c83e32-8a25-4c48-8f94-ef250236f755",
|
|
35
36
|
themeIds: {
|
|
@@ -286,6 +287,14 @@ exports.ReCaptChaSecretFormNames = {
|
|
|
286
287
|
secretkey: "secretkey",
|
|
287
288
|
};
|
|
288
289
|
exports.PeopleRollupFilterEngineContextPropertyTypes = {
|
|
289
|
-
|
|
290
|
+
scope: new fx_models_1.Guid("dd7c9c9d-c7fb-4c4a-871d-fa7d652f9389"),
|
|
291
|
+
scopeType: new fx_models_1.Guid("d210809c-2b52-47f7-a27e-24721472f17f"),
|
|
290
292
|
userType: new fx_models_1.Guid("dffba819-f884-4c18-a212-bd6895224356")
|
|
291
293
|
};
|
|
294
|
+
exports.FormRollupFilterEngineContextPropertyTypes = {
|
|
295
|
+
appInstance: new fx_models_1.Guid("6661706c-4cdf-40f2-80cb-591e040f666e"),
|
|
296
|
+
businessProfile: new fx_models_1.Guid("6dbbb9e7-ca84-4c2e-8f6e-d7aec0ff5260"),
|
|
297
|
+
startDate: new fx_models_1.Guid("ec38c16c-ee3e-4a1a-8c5c-8b9784c18672"),
|
|
298
|
+
endDate: new fx_models_1.Guid("0d757e39-478c-4eeb-830b-7edb970b92d9"),
|
|
299
|
+
status: new fx_models_1.Guid("2740dbe0-cd74-4d73-b2bb-0c6ad20fc0a8")
|
|
300
|
+
};
|
|
@@ -17,6 +17,7 @@ export declare class WPRoleDefinition {
|
|
|
17
17
|
static get SearchBPAdmin(): Guid;
|
|
18
18
|
static get GlobalSignOffRequestAdmin(): Guid;
|
|
19
19
|
static get AnalyticsBpReader(): Guid;
|
|
20
|
+
static get AnalyticsBpReportViewer(): Guid;
|
|
20
21
|
}
|
|
21
22
|
export declare class WizardSetupConstant {
|
|
22
23
|
static get LocationPropertyTaxonomy(): Guid;
|
|
@@ -132,6 +133,13 @@ export declare class ResourceManifests {
|
|
|
132
133
|
static get SignOffRequestFilterEngineProgressStatus(): Guid;
|
|
133
134
|
static get SignOffRequestFilterEngineStatus(): Guid;
|
|
134
135
|
static get SignOffRequestFilterEngineType(): Guid;
|
|
136
|
+
static get FormRollupCore(): Guid;
|
|
137
|
+
static get FormRollupFilterEngineScope(): Guid;
|
|
138
|
+
static get FormRollupFilterEngineAppInstance(): Guid;
|
|
139
|
+
static get FormRollupFilterEngineBusinessProfile(): Guid;
|
|
140
|
+
static get FormRollupFilterEngineFormStatus(): Guid;
|
|
141
|
+
static get FormRollupFilterEngineContextProperties(): Guid;
|
|
142
|
+
static get FormSharedComponentCore(): Guid;
|
|
135
143
|
static get HttpCodeLayoutResource(): Guid;
|
|
136
144
|
static get HttpCodeLayoutBPRegistration(): Guid;
|
|
137
145
|
static get HttpCodeLayoutTenantRegistration(): Guid;
|
|
@@ -140,7 +148,6 @@ export declare class ResourceManifests {
|
|
|
140
148
|
static get PeopleRollupOwnerFilterEngineRegistrationApi(): Guid;
|
|
141
149
|
static get PeopleRollupUserTypeFilterEngineRegistrationApi(): Guid;
|
|
142
150
|
static get PeopleRollupFilterEngineCore(): Guid;
|
|
143
|
-
static get FormRollupCore(): Guid;
|
|
144
151
|
}
|
|
145
152
|
export declare class WebComponentManifests {
|
|
146
153
|
static get FaviconSettings(): Guid;
|
|
@@ -358,6 +365,8 @@ export declare class WebComponentManifests {
|
|
|
358
365
|
static get CreateAppDialog(): Guid;
|
|
359
366
|
static get CreateFormDialog(): Guid;
|
|
360
367
|
static get FormBuilderDialogContent(): Guid;
|
|
368
|
+
static get FormTemplateSettings(): Guid;
|
|
369
|
+
static get FormPropertySettings(): Guid;
|
|
361
370
|
static get TeamNewsListView(): Guid;
|
|
362
371
|
static get TeamNewsListViewSettings(): Guid;
|
|
363
372
|
static get TeamNewsGroupView(): Guid;
|
|
@@ -556,6 +565,7 @@ export declare class WebComponentManifests {
|
|
|
556
565
|
static get AuthenticationScreenBlade(): Guid;
|
|
557
566
|
static get AuthenticationScreenChrome(): Guid;
|
|
558
567
|
static get PeopleRollupOwnerFilterEngineRenderer(): Guid;
|
|
568
|
+
static get PeopleRollupScopeTypeFilterEngineRenderer(): Guid;
|
|
559
569
|
static get PeopleRollupFilterEngineSelectionsAreaOwnerProperty(): Guid;
|
|
560
570
|
static get PeopleRollupOwnerPropertySettings(): Guid;
|
|
561
571
|
static get PeopleRollupOwnerPropertyDefaultValueInput(): Guid;
|
|
@@ -577,6 +587,20 @@ export declare class WebComponentManifests {
|
|
|
577
587
|
static get RecurrenceSettingBlade(): Guid;
|
|
578
588
|
static get RecurrenceSettingEditBlade(): Guid;
|
|
579
589
|
static get RecurrenceSettingMenuBlade(): Guid;
|
|
590
|
+
static get ResourceSelectorBlade(): Guid;
|
|
591
|
+
static get BusinessProfileFilterEngineRenderer(): Guid;
|
|
592
|
+
static get BusinessProfileFilterEngineSettings(): Guid;
|
|
593
|
+
static get BusinessProfileFilterEngineDefaultValueInput(): Guid;
|
|
594
|
+
static get BusinessProfileFilterEngineSelectionsArea(): Guid;
|
|
595
|
+
static get AppInstanceFilterEngineRenderer(): Guid;
|
|
596
|
+
static get AppInstanceFilterEngineSettings(): Guid;
|
|
597
|
+
static get AppInstanceFilterEngineDefaultValueInput(): Guid;
|
|
598
|
+
static get AppInstanceFilterEngineSelectionsArea(): Guid;
|
|
599
|
+
static get FormViewItem(): Guid;
|
|
600
|
+
static get FormStatusFilterEngineRenderer(): Guid;
|
|
601
|
+
static get FormStatusFilterEngineSettings(): Guid;
|
|
602
|
+
static get FormStatusFilterEngineSelectionsArea(): Guid;
|
|
603
|
+
static get FormStatusFilterEngineDefaultValueInput(): Guid;
|
|
580
604
|
}
|
|
581
605
|
export declare class WebComponentElements {
|
|
582
606
|
static get AppProvisioningStepMember(): string;
|
|
@@ -22,6 +22,7 @@ class WPRoleDefinition {
|
|
|
22
22
|
static get SearchBPAdmin() { return new fx_models_1.Guid("affe1bd8-b534-459b-bdd5-f11e5a2d1d73"); }
|
|
23
23
|
static get GlobalSignOffRequestAdmin() { return new fx_models_1.Guid("d20507d0-41c0-43a2-8ffc-13e923362f9d"); }
|
|
24
24
|
static get AnalyticsBpReader() { return new fx_models_1.Guid("ab0d9a26-a89a-4117-bfee-0e3013e456e1"); }
|
|
25
|
+
static get AnalyticsBpReportViewer() { return new fx_models_1.Guid("6a9551bb-8789-4669-a82b-71e5b5503e5d"); }
|
|
25
26
|
}
|
|
26
27
|
exports.WPRoleDefinition = WPRoleDefinition;
|
|
27
28
|
class WizardSetupConstant {
|
|
@@ -140,6 +141,13 @@ class ResourceManifests {
|
|
|
140
141
|
static get SignOffRequestFilterEngineProgressStatus() { return new fx_models_1.Guid("f4f13adc-5ef4-4030-810d-8d470351cd58"); }
|
|
141
142
|
static get SignOffRequestFilterEngineStatus() { return new fx_models_1.Guid("e8a10f86-2be1-4f84-8cc6-f54480057c00"); }
|
|
142
143
|
static get SignOffRequestFilterEngineType() { return new fx_models_1.Guid("b6094948-9445-416d-9d27-22abce66ffa1"); }
|
|
144
|
+
static get FormRollupCore() { return new fx_models_1.Guid("ce661fe3-ada7-4db9-ae46-a928035298e9"); }
|
|
145
|
+
static get FormRollupFilterEngineScope() { return new fx_models_1.Guid("206132c6-b536-4a68-8291-412f6721fdf4"); }
|
|
146
|
+
static get FormRollupFilterEngineAppInstance() { return new fx_models_1.Guid("c37302df-8ee3-4d49-8a6c-11f3df4ae4d5"); }
|
|
147
|
+
static get FormRollupFilterEngineBusinessProfile() { return new fx_models_1.Guid("f5d62c41-ec48-4484-8ea1-e162e106cd96"); }
|
|
148
|
+
static get FormRollupFilterEngineFormStatus() { return new fx_models_1.Guid("dc7f43b8-55bb-479b-9975-64ef69f87e40"); }
|
|
149
|
+
static get FormRollupFilterEngineContextProperties() { return new fx_models_1.Guid("87c0c090-5a82-43ad-aadd-41e8d8309f29"); }
|
|
150
|
+
static get FormSharedComponentCore() { return new fx_models_1.Guid("417ae783-51d1-42e8-9088-da74e5c38f0e"); }
|
|
143
151
|
static get HttpCodeLayoutResource() { return new fx_models_1.Guid("b6785187-5ac7-4fa1-a36e-08298f778cad"); }
|
|
144
152
|
static get HttpCodeLayoutBPRegistration() { return new fx_models_1.Guid("7e34f694-9a74-4741-bf2c-95ca05ade31a"); }
|
|
145
153
|
static get HttpCodeLayoutTenantRegistration() { return new fx_models_1.Guid("93178fef-8fbe-4e01-9510-b0a358ffa3a8"); }
|
|
@@ -148,7 +156,6 @@ class ResourceManifests {
|
|
|
148
156
|
static get PeopleRollupOwnerFilterEngineRegistrationApi() { return new fx_models_1.Guid("59f67a21-d0e5-4999-8d6e-260029173c7b"); }
|
|
149
157
|
static get PeopleRollupUserTypeFilterEngineRegistrationApi() { return new fx_models_1.Guid("09574fb3-e56d-4dc9-ada3-c2018e42c540"); }
|
|
150
158
|
static get PeopleRollupFilterEngineCore() { return new fx_models_1.Guid("3c70a618-1268-4eb7-aad4-38dff37fd8fe"); }
|
|
151
|
-
static get FormRollupCore() { return new fx_models_1.Guid("ce661fe3-ada7-4db9-ae46-a928035298e9"); }
|
|
152
159
|
}
|
|
153
160
|
exports.ResourceManifests = ResourceManifests;
|
|
154
161
|
class WebComponentManifests {
|
|
@@ -367,6 +374,8 @@ class WebComponentManifests {
|
|
|
367
374
|
static get CreateAppDialog() { return new fx_models_1.Guid("fc16945f-04e0-4309-9823-17c5d6963af5"); }
|
|
368
375
|
static get CreateFormDialog() { return new fx_models_1.Guid("c6864508-934e-4133-84f9-1bc724aacee6"); }
|
|
369
376
|
static get FormBuilderDialogContent() { return new fx_models_1.Guid("f2b57ef9-83b4-4dd7-9834-c262a86840e1"); }
|
|
377
|
+
static get FormTemplateSettings() { return new fx_models_1.Guid("a9d1ebc5-bf13-4174-9533-853bdaf155a2"); }
|
|
378
|
+
static get FormPropertySettings() { return new fx_models_1.Guid("882cfbdd-e6bf-4e8c-a5a0-d2438e7b7508"); }
|
|
370
379
|
static get TeamNewsListView() { return new fx_models_1.Guid("a6d1503c-445e-44b1-9f54-d124c14df29b"); }
|
|
371
380
|
static get TeamNewsListViewSettings() { return new fx_models_1.Guid("d7231aab-9393-4a6d-8aff-4b4d5a5498c4"); }
|
|
372
381
|
static get TeamNewsGroupView() { return new fx_models_1.Guid("7841542b-fb29-4ac2-9676-52a83a6167b9"); }
|
|
@@ -565,6 +574,7 @@ class WebComponentManifests {
|
|
|
565
574
|
static get AuthenticationScreenBlade() { return new fx_models_1.Guid("ecdcbe77-649d-423b-9f45-a2b3a4369a83"); }
|
|
566
575
|
static get AuthenticationScreenChrome() { return new fx_models_1.Guid("479f9b8e-edeb-4c41-95a3-1ac3e2b5299e"); }
|
|
567
576
|
static get PeopleRollupOwnerFilterEngineRenderer() { return new fx_models_1.Guid("6f8fe50e-34d1-42c6-98ea-5596b24cd82b"); }
|
|
577
|
+
static get PeopleRollupScopeTypeFilterEngineRenderer() { return new fx_models_1.Guid("36a1c52f-d83b-4765-ab06-2ec697ce2635"); }
|
|
568
578
|
static get PeopleRollupFilterEngineSelectionsAreaOwnerProperty() { return new fx_models_1.Guid("597aabee-e343-47b5-b7b4-233368f15030"); }
|
|
569
579
|
static get PeopleRollupOwnerPropertySettings() { return new fx_models_1.Guid("f0ff3e9d-530c-4040-a5f0-76545f5bc120"); }
|
|
570
580
|
static get PeopleRollupOwnerPropertyDefaultValueInput() { return new fx_models_1.Guid("fd90c46f-f9b8-419e-9bb8-cd3e8395570a"); }
|
|
@@ -586,6 +596,20 @@ class WebComponentManifests {
|
|
|
586
596
|
static get RecurrenceSettingBlade() { return new fx_models_1.Guid("79d6ef7a-c850-4bec-9fa0-9cab5dadd303"); }
|
|
587
597
|
static get RecurrenceSettingEditBlade() { return new fx_models_1.Guid("5e42f28c-a69d-4706-aa55-a03d90d89526"); }
|
|
588
598
|
static get RecurrenceSettingMenuBlade() { return new fx_models_1.Guid("9d21164d-8d7a-4d4c-a1f2-548501daf508"); }
|
|
599
|
+
static get ResourceSelectorBlade() { return new fx_models_1.Guid("180375fe-7804-46f5-ab75-8717c7b8b73e"); }
|
|
600
|
+
static get BusinessProfileFilterEngineRenderer() { return new fx_models_1.Guid("b6efdd67-b783-429b-817c-4fbcaf26eb70"); }
|
|
601
|
+
static get BusinessProfileFilterEngineSettings() { return new fx_models_1.Guid("7e649af3-81c8-4ec3-9405-249a5018b871"); }
|
|
602
|
+
static get BusinessProfileFilterEngineDefaultValueInput() { return new fx_models_1.Guid("bc5692b5-0d54-40c2-8777-e0f4d4810ddc"); }
|
|
603
|
+
static get BusinessProfileFilterEngineSelectionsArea() { return new fx_models_1.Guid("c78151cb-edc2-4d61-9897-ad269d939f89"); }
|
|
604
|
+
static get AppInstanceFilterEngineRenderer() { return new fx_models_1.Guid("86a1dbac-87bf-4d10-8d59-003a8b0cf06f"); }
|
|
605
|
+
static get AppInstanceFilterEngineSettings() { return new fx_models_1.Guid("2689637e-d336-4224-b91d-85c6a5f625b0"); }
|
|
606
|
+
static get AppInstanceFilterEngineDefaultValueInput() { return new fx_models_1.Guid("c7352795-fe4f-44da-b6ce-5334200f437e"); }
|
|
607
|
+
static get AppInstanceFilterEngineSelectionsArea() { return new fx_models_1.Guid("5808d4d8-db56-424b-ace7-a84501e0350e"); }
|
|
608
|
+
static get FormViewItem() { return new fx_models_1.Guid("ea2e21ff-d752-4d0d-84bb-51810a53521e"); }
|
|
609
|
+
static get FormStatusFilterEngineRenderer() { return new fx_models_1.Guid("2638caca-7acf-49b1-be9e-924327a2ad1a"); }
|
|
610
|
+
static get FormStatusFilterEngineSettings() { return new fx_models_1.Guid("fea6b108-c9cc-4ffd-9044-89e9e632ba42"); }
|
|
611
|
+
static get FormStatusFilterEngineSelectionsArea() { return new fx_models_1.Guid("77c771b4-5cce-4db4-8229-38ce362b9a64"); }
|
|
612
|
+
static get FormStatusFilterEngineDefaultValueInput() { return new fx_models_1.Guid("0f92d659-4323-4e68-9315-0416a26baa04"); }
|
|
589
613
|
}
|
|
590
614
|
exports.WebComponentManifests = WebComponentManifests;
|
|
591
615
|
class WebComponentElements {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { GuidValue, IconPickerModel, MultilingualString } from "@omnia/fx-models";
|
|
1
|
+
import { GuidValue, IconPickerModel, MultilingualString, BlockTitleSettings, SpacingSettings } from "@omnia/fx-models";
|
|
2
2
|
import { TargetingFilterProperty } from "@omnia/fx-sp-models";
|
|
3
3
|
import { SearchResultItem } from "./Search";
|
|
4
4
|
export interface MyLinkIcon extends IconPickerModel {
|
|
@@ -29,3 +29,57 @@ export interface QuickLink {
|
|
|
29
29
|
}
|
|
30
30
|
export interface SharedLinkSearchResultItem extends QuickLink, Omit<SearchResultItem, "title"> {
|
|
31
31
|
}
|
|
32
|
+
export interface CategoryLink {
|
|
33
|
+
title: string;
|
|
34
|
+
links: Array<QuickLink>;
|
|
35
|
+
}
|
|
36
|
+
export declare enum LinkViewMode {
|
|
37
|
+
View = 0,
|
|
38
|
+
Add = 1,
|
|
39
|
+
Edit = 2
|
|
40
|
+
}
|
|
41
|
+
export declare enum SortedByType {
|
|
42
|
+
Custom = 0,
|
|
43
|
+
Alphabetic = 1,
|
|
44
|
+
LastVisited = 2
|
|
45
|
+
}
|
|
46
|
+
export interface QuickLinksBlockSettings {
|
|
47
|
+
title?: MultilingualString;
|
|
48
|
+
backgroundColor?: string;
|
|
49
|
+
iconColor?: string;
|
|
50
|
+
textColor?: string;
|
|
51
|
+
borderColor?: string;
|
|
52
|
+
itemLimit?: number;
|
|
53
|
+
view?: string;
|
|
54
|
+
categories?: string[];
|
|
55
|
+
sortedBy?: SortedByType;
|
|
56
|
+
spacing?: SpacingSettings;
|
|
57
|
+
linksOrder?: Array<string>;
|
|
58
|
+
useTargeting?: boolean;
|
|
59
|
+
includeNonMandatoryLink?: boolean;
|
|
60
|
+
includeMandatoryLink?: boolean;
|
|
61
|
+
includePersonalLinks?: boolean;
|
|
62
|
+
includeFollowingLinks?: boolean;
|
|
63
|
+
showManageLinks?: boolean;
|
|
64
|
+
truncateText: boolean;
|
|
65
|
+
noResultText?: MultilingualString;
|
|
66
|
+
}
|
|
67
|
+
export interface AppLaunchSettings extends QuickLinksBlockSettings {
|
|
68
|
+
appLaunchSettings: {
|
|
69
|
+
enable?: boolean;
|
|
70
|
+
backgroundColor?: string;
|
|
71
|
+
iconColor?: string;
|
|
72
|
+
hoverColor?: string;
|
|
73
|
+
};
|
|
74
|
+
titleSettings?: BlockTitleSettings;
|
|
75
|
+
}
|
|
76
|
+
export declare enum ChangeTypes {
|
|
77
|
+
Remove = 1,
|
|
78
|
+
AddOrUpdate = 2,
|
|
79
|
+
All = 3
|
|
80
|
+
}
|
|
81
|
+
export interface LinkChanges {
|
|
82
|
+
myLinks?: ChangeTypes;
|
|
83
|
+
allLinks?: ChangeTypes;
|
|
84
|
+
recentLinks?: ChangeTypes;
|
|
85
|
+
}
|
|
@@ -1,2 +1,21 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ChangeTypes = exports.SortedByType = exports.LinkViewMode = void 0;
|
|
4
|
+
var LinkViewMode;
|
|
5
|
+
(function (LinkViewMode) {
|
|
6
|
+
LinkViewMode[LinkViewMode["View"] = 0] = "View";
|
|
7
|
+
LinkViewMode[LinkViewMode["Add"] = 1] = "Add";
|
|
8
|
+
LinkViewMode[LinkViewMode["Edit"] = 2] = "Edit";
|
|
9
|
+
})(LinkViewMode = exports.LinkViewMode || (exports.LinkViewMode = {}));
|
|
10
|
+
var SortedByType;
|
|
11
|
+
(function (SortedByType) {
|
|
12
|
+
SortedByType[SortedByType["Custom"] = 0] = "Custom";
|
|
13
|
+
SortedByType[SortedByType["Alphabetic"] = 1] = "Alphabetic";
|
|
14
|
+
SortedByType[SortedByType["LastVisited"] = 2] = "LastVisited";
|
|
15
|
+
})(SortedByType = exports.SortedByType || (exports.SortedByType = {}));
|
|
16
|
+
var ChangeTypes;
|
|
17
|
+
(function (ChangeTypes) {
|
|
18
|
+
ChangeTypes[ChangeTypes["Remove"] = 1] = "Remove";
|
|
19
|
+
ChangeTypes[ChangeTypes["AddOrUpdate"] = 2] = "AddOrUpdate";
|
|
20
|
+
ChangeTypes[ChangeTypes["All"] = 3] = "All";
|
|
21
|
+
})(ChangeTypes = exports.ChangeTypes || (exports.ChangeTypes = {}));
|
|
@@ -18,6 +18,11 @@ export interface AnalyticsScopeInfo {
|
|
|
18
18
|
numSlotsUsed: number;
|
|
19
19
|
numSlotsLeft: number;
|
|
20
20
|
}
|
|
21
|
+
export interface AnalyticsColumn {
|
|
22
|
+
id: string;
|
|
23
|
+
name: string;
|
|
24
|
+
dataType: string;
|
|
25
|
+
}
|
|
21
26
|
export declare enum AnalyticsDimensionScopes {
|
|
22
27
|
visit = 0,
|
|
23
28
|
action = 1
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { Guid, MultilingualString, PropertyValue } from "@omnia/fx/models";
|
|
1
2
|
import { IDataSourcePropertySelection } from "@omnia/fx/ux";
|
|
2
3
|
export interface AnalyticsFilterSettings {
|
|
3
4
|
name: string;
|
|
@@ -8,3 +9,15 @@ export interface AnalyticsFilterSettings {
|
|
|
8
9
|
value: string;
|
|
9
10
|
}[];
|
|
10
11
|
}
|
|
12
|
+
export interface AnalyticsPropertyFilter {
|
|
13
|
+
mappedProperty: IDataSourcePropertySelection;
|
|
14
|
+
propertyDefinitionId: Guid;
|
|
15
|
+
defaultPropertyValue: PropertyValue;
|
|
16
|
+
defaultValue: string;
|
|
17
|
+
label: MultilingualString;
|
|
18
|
+
showInBlock: boolean;
|
|
19
|
+
}
|
|
20
|
+
export interface AnalyticsPeriod {
|
|
21
|
+
name: string;
|
|
22
|
+
id: string;
|
|
23
|
+
}
|
|
@@ -4,7 +4,8 @@ export declare module AppEnums {
|
|
|
4
4
|
M365Group = "071484a2-6727-454a-9e7c-e103f5da0c84",
|
|
5
5
|
YammerGroup = "298429f6-8e39-4bb6-9e25-129896709d1f",
|
|
6
6
|
FacebookWorkplaceGroup = "76b4cae2-a213-4f9d-a7e0-e20b05eb2de8",
|
|
7
|
-
MicrosoftTeam = "026f8912-2c6f-4f19-81b8-fcbaca4864a2"
|
|
7
|
+
MicrosoftTeam = "026f8912-2c6f-4f19-81b8-fcbaca4864a2",
|
|
8
|
+
SPCommunicationSite = "7d5fc541-c02e-41f9-a7f7-86d91bc41df8"
|
|
8
9
|
}
|
|
9
10
|
enum TeamPrivacyOptions {
|
|
10
11
|
Public = "Public",
|
|
@@ -18,6 +18,7 @@ var AppEnums;
|
|
|
18
18
|
TeamworkResourceTypeIds["YammerGroup"] = "298429f6-8e39-4bb6-9e25-129896709d1f";
|
|
19
19
|
TeamworkResourceTypeIds["FacebookWorkplaceGroup"] = "76b4cae2-a213-4f9d-a7e0-e20b05eb2de8";
|
|
20
20
|
TeamworkResourceTypeIds["MicrosoftTeam"] = "026f8912-2c6f-4f19-81b8-fcbaca4864a2";
|
|
21
|
+
TeamworkResourceTypeIds["SPCommunicationSite"] = "7d5fc541-c02e-41f9-a7f7-86d91bc41df8";
|
|
21
22
|
})(TeamworkResourceTypeIds = AppEnums.TeamworkResourceTypeIds || (AppEnums.TeamworkResourceTypeIds = {}));
|
|
22
23
|
let TeamPrivacyOptions;
|
|
23
24
|
(function (TeamPrivacyOptions) {
|
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
import { BusinessProfileProperty, Guid, GuidValue, Identity, Layout, MediaPickerImage, MultilingualString, SpacingSettings } from "@omnia/fx/models";
|
|
2
2
|
import { FormTemplateSettings } from "./FormTemplate";
|
|
3
|
+
import { FormQueryScopes, FormRollupViewComponentSettings } from "./components";
|
|
3
4
|
export interface FormActionHandlerSettings extends FormBuilderSettings {
|
|
4
5
|
selectedTypeId: number;
|
|
5
6
|
scopeType: FormScopeTypes;
|
|
6
7
|
scopeId: GuidValue;
|
|
7
|
-
businessProfileId: GuidValue;
|
|
8
8
|
}
|
|
9
9
|
export interface FormBuilderSettings {
|
|
10
|
-
allowMultiQuestions: boolean;
|
|
11
|
-
showFormSettings: boolean;
|
|
12
10
|
isEditing?: boolean;
|
|
13
11
|
}
|
|
14
12
|
export declare const ScopeCurrentId: Guid;
|
|
15
|
-
declare
|
|
16
|
-
|
|
13
|
+
export declare enum FormScopeTypes {
|
|
14
|
+
BusinessProfile = 1,
|
|
15
|
+
AppInstance = 2
|
|
16
|
+
}
|
|
17
17
|
declare const FormBuilderSteps: readonly ["templateSettings", "formQuestions", "formSettings"];
|
|
18
18
|
export type FormSteps = typeof FormBuilderSteps[number];
|
|
19
19
|
export interface FormBase {
|
|
@@ -30,7 +30,7 @@ export interface CreateFormRequest extends Form {
|
|
|
30
30
|
}
|
|
31
31
|
export interface Form extends FormBase {
|
|
32
32
|
id?: number;
|
|
33
|
-
profileId
|
|
33
|
+
profileId?: GuidValue;
|
|
34
34
|
appInstanceId?: GuidValue;
|
|
35
35
|
createdAt: string;
|
|
36
36
|
createdBy: Identity;
|
|
@@ -160,16 +160,22 @@ export interface QuestionBlockSettings {
|
|
|
160
160
|
spacing?: SpacingSettings;
|
|
161
161
|
};
|
|
162
162
|
}
|
|
163
|
-
export interface
|
|
164
|
-
formId: number;
|
|
165
|
-
blockTitle: MultilingualString;
|
|
163
|
+
export interface FormViewDisplaySettings {
|
|
166
164
|
useDialog: boolean;
|
|
167
165
|
showFormTitle: boolean;
|
|
166
|
+
showFormImage: boolean;
|
|
168
167
|
legendAlignment: LegendAlignment;
|
|
169
168
|
legendPosition: LegendPosition;
|
|
170
169
|
customShowFormButton: MultilingualString;
|
|
171
170
|
spacing?: SpacingSettings;
|
|
172
171
|
}
|
|
172
|
+
export interface FormRendererBlockSettings extends FormViewDisplaySettings {
|
|
173
|
+
formId: number;
|
|
174
|
+
blockTitle: MultilingualString;
|
|
175
|
+
scopeType?: FormQueryScopes;
|
|
176
|
+
scopeId?: GuidValue;
|
|
177
|
+
}
|
|
178
|
+
export type FormViewComponentSettings = FormViewDisplaySettings & FormRollupViewComponentSettings;
|
|
173
179
|
export declare class FormGenericSetting extends BusinessProfileProperty {
|
|
174
180
|
chartColor: ChartColor[];
|
|
175
181
|
constructor();
|
|
@@ -178,4 +184,9 @@ export declare class ChartColor {
|
|
|
178
184
|
color: string;
|
|
179
185
|
textColor: string;
|
|
180
186
|
}
|
|
187
|
+
export declare enum FormDisplayStatus {
|
|
188
|
+
NotOpen = 0,
|
|
189
|
+
Opening = 1,
|
|
190
|
+
Closed = 2
|
|
191
|
+
}
|
|
181
192
|
export {};
|