@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.
@@ -69,6 +69,7 @@ export declare module FormsLocalization {
69
69
  ShowUserResponse: string;
70
70
  ShowAllResponses: string;
71
71
  UneditableForm: string;
72
+ WhenClosed: string;
72
73
  };
73
74
  Editor: {
74
75
  AddOtherOption: string;
@@ -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
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/workplace",
3
3
  "license": "MIT",
4
- "version": "7.6.40-preview",
4
+ "version": "7.6.42-preview",
5
5
  "description": "Omnia Workplace.",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1"