@omnia/workplace 7.6.51-preview → 7.6.53-preview

Sign up to get free protection for your applications and to get access to all the features.
@@ -15,6 +15,7 @@ export declare module FormsLocalization {
15
15
  DeleteQuestion: string;
16
16
  Option: string;
17
17
  CreateForm: string;
18
+ ExportToExcel: string;
18
19
  LimitResponseTime: {
19
20
  Title: string;
20
21
  BeforeStartTimeMessage: string;
@@ -49,7 +50,6 @@ export declare module FormsLocalization {
49
50
  };
50
51
  };
51
52
  EditForm: {
52
- Open: string;
53
53
  OneResponsePerPerson: string;
54
54
  MakeResponsesAnonymous: string;
55
55
  EnableShowResponse: string;
@@ -82,7 +82,6 @@ export declare module FormsLocalization {
82
82
  UserDefined: string;
83
83
  ShowLayoutView: string;
84
84
  ShowQuestionView: string;
85
- ExportToExcel: string;
86
85
  OnlyEditInAdmin: string;
87
86
  Other: string;
88
87
  };
@@ -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: {
@@ -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: {
@@ -24,6 +24,7 @@ export declare class SignOffRequestStore extends Store {
24
24
  readonly SignOffRequestSettingsKey = "wp.signoffrequest.globalsettings";
25
25
  onActivated(): void;
26
26
  onDisposing(): void;
27
+ private isFeatureActivated;
27
28
  /**
28
29
  * Implementation of getters
29
30
  */
@@ -28,5 +28,6 @@ export declare class FormStore extends Store {
28
28
  deleteForm: import("@omnia/fx/stores").StoreAction<unknown, (formId: number) => void, (result: void, formId: number) => void, (failureReason: any, formId: number) => void, (formId: number) => Promise<void>>;
29
29
  copyForm: import("@omnia/fx/stores").StoreAction<unknown, (formId: number) => void, (result: Form, formId: number) => void, (failureReason: any, formId: number) => void, (formId: number) => Promise<Form>>;
30
30
  clearResponses: import("@omnia/fx/stores").StoreAction<unknown, (formId: number, closeResponseAfterward: boolean) => void, (result: void, formId: number, closeResponseAfterward: boolean) => void, (failureReason: any, formId: number, closeResponseAfterward: boolean) => void, (formId: number, closeResponseAfterward: boolean) => Promise<void>>;
31
+ exportToExcel: import("@omnia/fx/stores").StoreAction<unknown, (formId: number) => void, (result: void, formId: number) => void, (failureReason: any, formId: number) => void, (formId: number) => Promise<void>>;
31
32
  };
32
33
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/workplace",
3
3
  "license": "MIT",
4
- "version": "7.6.51-preview",
4
+ "version": "7.6.53-preview",
5
5
  "description": "Omnia Workplace.",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1"