df-ae-forms-package 1.0.40 → 1.0.42
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/dist/index.css +1 -1
- package/dist/index.css.map +1 -1
- package/dist/index.d.ts +3 -0
- package/dist/index.esm.js +29 -29
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +29 -29
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -858,6 +858,7 @@ interface IIssue {
|
|
|
858
858
|
comments?: string;
|
|
859
859
|
attachments?: any[];
|
|
860
860
|
createdAt?: string;
|
|
861
|
+
updatedAt?: string;
|
|
861
862
|
createdBy?: string;
|
|
862
863
|
}
|
|
863
864
|
interface IRaiseIssueModalProps {
|
|
@@ -879,6 +880,8 @@ interface IRaiseIssueModalProps {
|
|
|
879
880
|
workOrderNumber?: string;
|
|
880
881
|
assetNumber?: string;
|
|
881
882
|
isStandalone?: boolean;
|
|
883
|
+
allowWorkflowActions?: boolean;
|
|
884
|
+
isEdit?: boolean;
|
|
882
885
|
}
|
|
883
886
|
declare const RaiseIssueModal: React.FC<IRaiseIssueModalProps>;
|
|
884
887
|
|