df-ae-forms-package 1.0.36 → 1.0.38
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 +9 -0
- package/dist/index.esm.js +2 -2
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -694,6 +694,10 @@ interface DfFormSectionProps {
|
|
|
694
694
|
onAttachmentChange?: (componentId: string, attachments: File[] | null) => void;
|
|
695
695
|
workOrderNumber?: string;
|
|
696
696
|
assetNumber?: string;
|
|
697
|
+
user?: {
|
|
698
|
+
firstName?: string;
|
|
699
|
+
lastName?: string;
|
|
700
|
+
};
|
|
697
701
|
}
|
|
698
702
|
declare const DfFormSection: React.FC<DfFormSectionProps>;
|
|
699
703
|
|
|
@@ -775,6 +779,10 @@ interface DfFormTableProps {
|
|
|
775
779
|
onAttachmentChange?: (componentId: string, attachments: File[] | null) => void;
|
|
776
780
|
workOrderNumber?: string;
|
|
777
781
|
assetNumber?: string;
|
|
782
|
+
user?: {
|
|
783
|
+
firstName?: string;
|
|
784
|
+
lastName?: string;
|
|
785
|
+
};
|
|
778
786
|
}
|
|
779
787
|
declare const DfFormTable: React.FC<DfFormTableProps>;
|
|
780
788
|
|
|
@@ -838,6 +846,7 @@ interface IIssue {
|
|
|
838
846
|
assignee?: string;
|
|
839
847
|
assignTo?: string;
|
|
840
848
|
comments?: string;
|
|
849
|
+
attachments?: any[];
|
|
841
850
|
createdAt?: string;
|
|
842
851
|
createdBy?: string;
|
|
843
852
|
}
|