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.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
  }