@omnia/workplace 7.6.40-preview → 7.6.42-preview
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/formLocalize.d.ts +1 -0
- package/internal-do-not-import-from-here/models/ManifestIds.d.ts +1 -0
- package/internal-do-not-import-from-here/models/ManifestIds.js +1 -0
- package/internal-do-not-import-from-here/models/forms/FormTemplate.d.ts +7 -0
- package/internal-do-not-import-from-here/services/forms/FormService.d.ts +1 -0
- package/internal-do-not-import-from-here/services/forms/FormTemplateService.d.ts +1 -0
- package/package.json +1 -1
|
@@ -135,6 +135,7 @@ export declare class ResourceManifests {
|
|
|
135
135
|
static get FormRollupCore(): Guid;
|
|
136
136
|
static get FormRollupFilterEngineFormScope(): Guid;
|
|
137
137
|
static get FormRollupFilterEngineContextProperties(): Guid;
|
|
138
|
+
static get FormSharedComponentCore(): Guid;
|
|
138
139
|
static get HttpCodeLayoutResource(): Guid;
|
|
139
140
|
static get HttpCodeLayoutBPRegistration(): Guid;
|
|
140
141
|
static get HttpCodeLayoutTenantRegistration(): Guid;
|
|
@@ -143,6 +143,7 @@ class ResourceManifests {
|
|
|
143
143
|
static get FormRollupCore() { return new fx_models_1.Guid("ce661fe3-ada7-4db9-ae46-a928035298e9"); }
|
|
144
144
|
static get FormRollupFilterEngineFormScope() { return new fx_models_1.Guid("c37302df-8ee3-4d49-8a6c-11f3df4ae4d5"); }
|
|
145
145
|
static get FormRollupFilterEngineContextProperties() { return new fx_models_1.Guid("87c0c090-5a82-43ad-aadd-41e8d8309f29"); }
|
|
146
|
+
static get FormSharedComponentCore() { return new fx_models_1.Guid("417ae783-51d1-42e8-9088-da74e5c38f0e"); }
|
|
146
147
|
static get HttpCodeLayoutResource() { return new fx_models_1.Guid("b6785187-5ac7-4fa1-a36e-08298f778cad"); }
|
|
147
148
|
static get HttpCodeLayoutBPRegistration() { return new fx_models_1.Guid("7e34f694-9a74-4741-bf2c-95ca05ade31a"); }
|
|
148
149
|
static get HttpCodeLayoutTenantRegistration() { return new fx_models_1.Guid("93178fef-8fbe-4e01-9510-b0a358ffa3a8"); }
|
|
@@ -13,6 +13,13 @@ export interface FormTemplateSettings {
|
|
|
13
13
|
showAllResponses: boolean;
|
|
14
14
|
customSubmitLabel: MultilingualString;
|
|
15
15
|
submittedMessage: MultilingualString;
|
|
16
|
+
closedSettings: FormClosedSettings;
|
|
17
|
+
}
|
|
18
|
+
export interface FormClosedSettings {
|
|
19
|
+
showMessage: boolean;
|
|
20
|
+
showUserResponse: boolean;
|
|
21
|
+
showAllResponses: boolean;
|
|
22
|
+
message: MultilingualString;
|
|
16
23
|
}
|
|
17
24
|
export interface FormTemplateRequest {
|
|
18
25
|
baseType: FormTypes;
|
|
@@ -16,4 +16,5 @@ export declare class FormService {
|
|
|
16
16
|
getChoiceQuestionStatistic: (form: Form, question: ChoiceQuestion | MultipleChoiceQuestion) => Promise<ChoiceQuestionStatistic>;
|
|
17
17
|
clearResponse: (formId: number, closeFormAfterward: boolean) => Promise<Form>;
|
|
18
18
|
exportToExcel: (formId: number) => Promise<void>;
|
|
19
|
+
private migrateFormDefinitionSettings;
|
|
19
20
|
}
|
|
@@ -8,4 +8,5 @@ export declare class FormTemplateService {
|
|
|
8
8
|
updateFormTemplate: (formTemplate: FormTemplate) => Promise<FormTemplate>;
|
|
9
9
|
removeFormTemplate: (id: number) => Promise<FormTemplate>;
|
|
10
10
|
isFormTemplateInUse: (formTemplateId: number) => Promise<boolean>;
|
|
11
|
+
private migrateFormTemplateSettings;
|
|
11
12
|
}
|