df-ae-forms-package 1.0.6 → 1.0.8

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
@@ -752,6 +752,7 @@ interface DfFormTableProps {
752
752
  onColumnRemove?: (columnIndex: number) => void;
753
753
  formTemplateId?: string;
754
754
  onThresholdActionCompletion?: (conditionId: string, action: 'notes' | 'attachments' | 'email', completed: boolean) => void;
755
+ onThresholdIssueRaised?: (conditionId: string) => void;
755
756
  onNotesChange?: (componentId: string, notes: string) => void;
756
757
  onAttachmentChange?: (componentId: string, attachments: File[] | null) => void;
757
758
  }
@@ -795,12 +796,8 @@ interface IIssue {
795
796
  title?: string;
796
797
  description?: string;
797
798
  workOrderNumber?: string;
798
- workOrderId?: string;
799
799
  assetNumber?: string;
800
- assetId?: string;
801
- assetDescription?: string;
802
800
  formTemplateId?: string;
803
- formInstanceId?: string;
804
801
  component?: FormComponentType;
805
802
  priority?: 'High' | 'Medium' | 'Low';
806
803
  status?: string;
@@ -814,7 +811,6 @@ interface IRaiseIssueModalProps {
814
811
  onSuccess?: (createdIssue?: IIssue) => void;
815
812
  component?: FormComponentType;
816
813
  formTemplateId?: string;
817
- formInstanceId?: string;
818
814
  notes?: string;
819
815
  attachments?: File[] | null;
820
816
  issue?: IIssue | null;