df-ae-forms-package 1.0.55 → 1.0.57
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 +8 -0
- package/dist/index.esm.js +1 -364
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +1 -364
- package/dist/index.js.map +1 -1
- package/package.json +3 -2
package/dist/index.d.ts
CHANGED
|
@@ -737,6 +737,14 @@ interface DfFormDataGridProps {
|
|
|
737
737
|
onNotesChange?: (componentId: string, notes: string) => void;
|
|
738
738
|
onAttachmentChange?: (componentId: string, attachments: File[] | null) => void;
|
|
739
739
|
shouldShowComponent?: (componentId: string) => boolean;
|
|
740
|
+
workOrderNumber?: string;
|
|
741
|
+
assetNumber?: string;
|
|
742
|
+
user?: {
|
|
743
|
+
firstName?: string;
|
|
744
|
+
lastName?: string;
|
|
745
|
+
};
|
|
746
|
+
onCreateIssue?: (issueData: any, attachments: File[]) => Promise<any>;
|
|
747
|
+
onUpdateIssue?: (issueId: string, updateData: any) => Promise<void>;
|
|
740
748
|
}
|
|
741
749
|
declare const DfFormDataGrid: React.FC<DfFormDataGridProps>;
|
|
742
750
|
|