df-ae-forms-package 1.0.43 → 1.0.45
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.d.ts +5 -0
- package/dist/index.esm.js +1 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +19 -19
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -741,6 +741,10 @@ interface DfFormDataGridProps {
|
|
|
741
741
|
onAttachmentChange?: (componentId: string, attachments: File[] | null) => void;
|
|
742
742
|
workOrderNumber?: string;
|
|
743
743
|
assetNumber?: string;
|
|
744
|
+
user?: {
|
|
745
|
+
firstName?: string;
|
|
746
|
+
lastName?: string;
|
|
747
|
+
};
|
|
744
748
|
onCreateIssue?: (issueData: any, attachments: File[]) => Promise<any>;
|
|
745
749
|
onUpdateIssue?: (issueId: string, updateData: any) => Promise<void>;
|
|
746
750
|
}
|
|
@@ -799,6 +803,7 @@ interface IComponentActionFeaturesProps {
|
|
|
799
803
|
mode: 'edit' | 'preview' | 'test';
|
|
800
804
|
formTemplateId?: string;
|
|
801
805
|
formValue?: any;
|
|
806
|
+
formData?: Record<string, any>;
|
|
802
807
|
onNotesChange?: (notes: string) => void;
|
|
803
808
|
onAttachmentChange?: (files: File[] | null) => void;
|
|
804
809
|
notes?: string;
|