df-ae-forms-package 1.0.37 → 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.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