@omnia/management-system 7.7.29-preview → 7.7.31-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/apis/approvaltask/ApprovalTaskCustomViewApi.manifest.d.ts +1 -0
- package/internal-do-not-import-from-here/apis/documenttype/DocumentTypeSettingCustomTabApi.manifest.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/components/approvaltask/ApprovalTaskCustomView.d.ts +14 -0
- package/internal-do-not-import-from-here/models/components/approvaltask/ApprovalTaskCustomView.js +2 -0
- package/internal-do-not-import-from-here/models/components/approvaltask/ApprovalTaskCustomViewProvider.d.ts +19 -0
- package/internal-do-not-import-from-here/models/components/approvaltask/ApprovalTaskCustomViewProvider.js +2 -0
- package/internal-do-not-import-from-here/models/components/approvaltask/index.d.ts +2 -0
- package/internal-do-not-import-from-here/models/components/approvaltask/index.js +5 -0
- package/internal-do-not-import-from-here/models/components/index.d.ts +1 -0
- package/internal-do-not-import-from-here/models/components/index.js +1 -0
- package/package.json +1 -1
- /package/internal-do-not-import-from-here/apis/{documenttype/ProcessCustomButtonApi.manifest.d.ts → approvaltask/ApprovalTaskCustomViewApi.d.ts} +0 -0
package/internal-do-not-import-from-here/apis/approvaltask/ApprovalTaskCustomViewApi.manifest.d.ts
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
export {};
|
@@ -0,0 +1 @@
|
|
1
|
+
export {};
|
@@ -27,6 +27,7 @@ export declare class ODMWebComponentManifests {
|
|
27
27
|
static get DocumentLinkPicker(): Guid;
|
28
28
|
static get DocumentTemplateMergeSettings(): Guid;
|
29
29
|
static get DocumenTypeSettingTabApiRegistration(): Guid;
|
30
|
+
static get ApprovalTaskCustomViewApiRegistration(): Guid;
|
30
31
|
}
|
31
32
|
export declare class ODMResourceManifests {
|
32
33
|
static get FxCore(): Guid;
|
@@ -32,6 +32,7 @@ class ODMWebComponentManifests {
|
|
32
32
|
static get DocumentLinkPicker() { return new fx_models_1.Guid("81ffacf7-ccde-4ced-954e-382b34bd0d9a"); }
|
33
33
|
static get DocumentTemplateMergeSettings() { return new fx_models_1.Guid("21d1b179-d290-4839-84b8-ad3e9d929fbf"); }
|
34
34
|
static get DocumenTypeSettingTabApiRegistration() { return new fx_models_1.Guid("78b1fb76-7785-4fdd-8509-e47a57d27a0d"); }
|
35
|
+
static get ApprovalTaskCustomViewApiRegistration() { return new fx_models_1.Guid("c0b778b9-86fb-4d96-ac88-c6314a268f78"); }
|
35
36
|
}
|
36
37
|
exports.ODMWebComponentManifests = ODMWebComponentManifests;
|
37
38
|
class ODMResourceManifests {
|
package/internal-do-not-import-from-here/models/components/approvaltask/ApprovalTaskCustomView.d.ts
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
import { GuidValue } from "@omnia/fx/models";
|
2
|
+
export interface IApprovalTaskCustomViewRenderer {
|
3
|
+
/**
|
4
|
+
* @param order need to larger than 4
|
5
|
+
*/
|
6
|
+
order: number;
|
7
|
+
modelContentManifestId?: GuidValue;
|
8
|
+
title: string;
|
9
|
+
}
|
10
|
+
export interface IApprovalTaskSetting {
|
11
|
+
openInClientApp: boolean;
|
12
|
+
closeCallback: () => void;
|
13
|
+
taskId: number;
|
14
|
+
}
|
@@ -0,0 +1,19 @@
|
|
1
|
+
import { ApiPath } from "@omnia/fx/models";
|
2
|
+
import { IApprovalTaskCustomViewRenderer } from "./ApprovalTaskCustomView";
|
3
|
+
export interface IApprovalTaskConfigurationApi {
|
4
|
+
addCustomView: (items: IApprovalTaskCustomViewRenderer) => void;
|
5
|
+
getView: () => IApprovalTaskCustomViewRenderer;
|
6
|
+
}
|
7
|
+
declare module "../../../apis/index" {
|
8
|
+
interface IMSApi {
|
9
|
+
approvalTaskCustomView: {
|
10
|
+
registration: Promise<IApprovalTaskConfigurationApi>;
|
11
|
+
};
|
12
|
+
}
|
13
|
+
interface IMSExtendApiManifest {
|
14
|
+
ApprovalTaskCustomView: {
|
15
|
+
use: ApiPath;
|
16
|
+
registration: ApiPath;
|
17
|
+
};
|
18
|
+
}
|
19
|
+
}
|
@@ -10,3 +10,4 @@ tslib_1.__exportStar(require("./processrollup"), exports);
|
|
10
10
|
tslib_1.__exportStar(require("./pointpicker"), exports);
|
11
11
|
tslib_1.__exportStar(require("./feedbackbutton"), exports);
|
12
12
|
tslib_1.__exportStar(require("./documenttype"), exports);
|
13
|
+
tslib_1.__exportStar(require("./approvaltask"), exports);
|
package/package.json
CHANGED