@omnia/workplace 6.7.102-preview → 6.7.107-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/models/signoffrequest/SignOffRequestEnum.d.ts +3 -1
- package/internal-do-not-import-from-here/models/signoffrequest/SignOffRequestEnum.js +2 -0
- package/internal-do-not-import-from-here/models/styles/AnnouncementStyles.d.ts +1 -1
- package/internal-do-not-import-from-here/models/styles/SearchStyles.d.ts +1 -1
- package/internal-do-not-import-from-here/services/SignOffRequestService.d.ts +1 -0
- package/internal-do-not-import-from-here/stores/SignOffRequestStore.d.ts +1 -0
- package/package.json +1 -1
|
@@ -2,8 +2,10 @@ export var SignOffRequestEnums;
|
|
|
2
2
|
(function (SignOffRequestEnums) {
|
|
3
3
|
var SignOffRequestStatus;
|
|
4
4
|
(function (SignOffRequestStatus) {
|
|
5
|
+
SignOffRequestStatus[SignOffRequestStatus["Pending"] = 0] = "Pending";
|
|
5
6
|
SignOffRequestStatus[SignOffRequestStatus["Open"] = 1] = "Open";
|
|
6
7
|
SignOffRequestStatus[SignOffRequestStatus["Closed"] = 2] = "Closed";
|
|
8
|
+
SignOffRequestStatus[SignOffRequestStatus["Error"] = 3] = "Error";
|
|
7
9
|
})(SignOffRequestStatus = SignOffRequestEnums.SignOffRequestStatus || (SignOffRequestEnums.SignOffRequestStatus = {}));
|
|
8
10
|
var SignOffRequestProgress;
|
|
9
11
|
(function (SignOffRequestProgress) {
|
|
@@ -25,7 +25,7 @@ export declare const HighPriorityAnnouncementStyle: {
|
|
|
25
25
|
container?: types.NestedCSSProperties;
|
|
26
26
|
content?: types.NestedCSSProperties;
|
|
27
27
|
contentTitle?: types.NestedCSSProperties;
|
|
28
|
-
contentDescription?: types.NestedCSSProperties;
|
|
28
|
+
contentDescription?: (textColor: string) => types.NestedCSSProperties;
|
|
29
29
|
comments?: types.NestedCSSProperties;
|
|
30
30
|
buttons?: types.NestedCSSProperties;
|
|
31
31
|
commentCountWrapper?: (textColor: string) => types.NestedCSSProperties;
|
|
@@ -16,7 +16,7 @@ declare type SearchRule = {
|
|
|
16
16
|
linkSeeMore?: types.NestedCSSProperties;
|
|
17
17
|
headerTitle?: types.NestedCSSProperties;
|
|
18
18
|
textboxDialogMode?: types.NestedCSSProperties;
|
|
19
|
-
noResult?: (showOnHeader: boolean) => types.NestedCSSProperties;
|
|
19
|
+
noResult?: (showOnHeader: boolean, dropdownResultMode: boolean) => types.NestedCSSProperties;
|
|
20
20
|
searchBox?: (styling: SearchBoxStyling, theming: ITheming) => types.NestedCSSProperties;
|
|
21
21
|
dropdownResult?: (height: number, showOnHeader: boolean) => types.NestedCSSProperties;
|
|
22
22
|
};
|
|
@@ -8,6 +8,7 @@ export declare class SignOffRequestService {
|
|
|
8
8
|
getRequestDetails: (id: GuidValue) => Promise<SignOffRequestDetails>;
|
|
9
9
|
addRequest: (request: SignOffRequestCreateModel) => Promise<SignOffRequest>;
|
|
10
10
|
updateRequest: (signOffRequest: SignOffRequest, propertiesToUpdate: ISignOffRequestUpdatableProperties) => Promise<SignOffRequest>;
|
|
11
|
+
ensureAddRequestToUsers: (requestId: GuidValue) => Promise<boolean>;
|
|
11
12
|
removeRequest: (request: SignOffRequest) => Promise<void>;
|
|
12
13
|
getUnconfirmedRequestsForCurrentUserAsync: () => Promise<UserSignOffRequests>;
|
|
13
14
|
confirmResourceRequests: (requestResponses: Array<SignOffRequestResource>) => Promise<void>;
|
|
@@ -47,6 +47,7 @@ export declare class SignOffRequestStore extends Store {
|
|
|
47
47
|
ensureRequestToUsers: import("@omnia/fx/stores").StoreAction<unknown, (requestTo: Identity[]) => void, (result: Identity[], requestTo: Identity[]) => void, (failureReason: any, requestTo: Identity[]) => void, (requestTo: Array<Identity>) => Promise<Identity[]>>;
|
|
48
48
|
ensureCurrentRequestToUsers: import("@omnia/fx/stores").StoreAction<unknown, (requestId: GuidValue) => void, (result: Identity[], requestId: GuidValue) => void, (failureReason: any, requestId: GuidValue) => void, (requestId: GuidValue) => Promise<Identity[]>>;
|
|
49
49
|
sendReminderEmail: import("@omnia/fx/stores").StoreAction<unknown, (request: SignOffRequest, resourceDetails: SignOffRequestResourceDetail[]) => void, (result: void, request: SignOffRequest, resourceDetails: SignOffRequestResourceDetail[]) => void, (failureReason: any, request: SignOffRequest, resourceDetails: SignOffRequestResourceDetail[]) => void, (request: SignOffRequest, resourceDetails: Array<SignOffRequestResourceDetail>) => Promise<void>>;
|
|
50
|
+
forceUpdateStatus: import("@omnia/fx/stores").StoreAction<unknown, () => void, (result: void) => void, (failureReason: any) => void, () => Promise<void>>;
|
|
50
51
|
};
|
|
51
52
|
/**
|
|
52
53
|
* Implementation of mutations
|