@asaleh37/ui-base 1.2.24 → 1.2.26

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
@@ -427,6 +427,8 @@ type attachment = {
427
427
  docType: string;
428
428
  fileName: string;
429
429
  refKey: string;
430
+ allowDelete?: boolean;
431
+ downloadAuthorityKey?: string;
430
432
  remark: string;
431
433
  };
432
434
  declare const AttachmentCard: React.FC<attachment>;
@@ -437,6 +439,7 @@ type AttachmentImageViewerProps = {
437
439
  refKey?: string;
438
440
  category?: string;
439
441
  showAsAvatar?: boolean;
442
+ style?: SxProps;
440
443
  };
441
444
  declare const AttachmentImageViewer: React.FC<AttachmentImageViewerProps>;
442
445
 
@@ -462,6 +465,7 @@ type workflowDocumentActionHistory = {
462
465
  documentActionEnName: string;
463
466
  employeeArName: string;
464
467
  employeeEnName: string;
468
+ personId: number;
465
469
  };
466
470
  declare const WorkflowDocumentPanel: React.FC<WorkflowDocumentPanelProps>;
467
471