@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 +4 -0
- package/dist/index.js +6 -6
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +6 -6
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/rollup.config-1748377725725.cjs +16 -16
- package/src/components/administration/admin/PersonGrid.tsx +1 -1
- package/src/components/administration/dev/MailNotificationQueueGrid.tsx +27 -1
- package/src/components/administration/dev/MailTemplateGrid.tsx +4 -8
- package/src/components/templates/DataEntryTemplates/TemplateDataGrid/TemplateGrid.tsx +22 -5
- package/src/components/templates/attachment/AttachmentCard.tsx +32 -17
- package/src/components/templates/attachment/AttachmentImageViewer.tsx +3 -2
- package/src/components/templates/attachment/AttachmentPanel.tsx +3 -1
- package/src/components/templates/report/ReportViewer.tsx +4 -3
- package/src/components/templates/workflow/WorkflowDocumentPanel.tsx +28 -3
- package/src/components/templates/workflow/WorkflowDocumentTimeLine.tsx +7 -1
- package/src/layout/NotificationButton.tsx +1 -1
- package/src/layout/TopBar.tsx +1 -1
- package/src/locals/book/arabic/bookLocalsAr.json +8 -0
- package/src/locals/book/english/bookLocalsEn.json +8 -0
- package/src/main.tsx +1 -1
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
|
|