@asaleh37/ui-base 25.9.6-2 → 25.9.6-3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@asaleh37/ui-base",
3
- "version": "25.9.6-2",
3
+ "version": "25.9.6-3",
4
4
  "description": "",
5
5
  "license": "ISC",
6
6
  "author": "Ahmed Saleh Mohamed",
@@ -123,7 +123,7 @@ const AttachmentConfigGrid: React.FC = () => {
123
123
  props: {
124
124
  fieldLabel: "Include App Code in attachment path",
125
125
  fieldName: "includeAppCodeInPath",
126
- required: false,
126
+ required: true,
127
127
  fieldType: "checkbox",
128
128
  },
129
129
  },
@@ -123,7 +123,7 @@ const WorkflowDocumentPanel: React.FC<WorkflowDocumentPanelProps> = (props) => {
123
123
  refDocumentId: props.refDocumentId,
124
124
  },
125
125
  successCallBkFn: (response: any) => {
126
- setWorkflowDocumentInfo(response.data);
126
+ setWorkflowDocumentInfo(structuredClone(response.data));
127
127
  },
128
128
  failureCallBkFn: () => {
129
129
  setWorkflowDocumentInfo({
@@ -347,7 +347,7 @@ const WorkflowDocumentPanel: React.FC<WorkflowDocumentPanelProps> = (props) => {
347
347
  <Box
348
348
  sx={{
349
349
  flex: 1,
350
- width: "100%",
350
+ width: "100%",
351
351
  overflow: "hidden",
352
352
  display: "flex",
353
353
  // flexDirection: "column",
@@ -562,8 +562,8 @@ const WorkflowDocumentPanel: React.FC<WorkflowDocumentPanelProps> = (props) => {
562
562
  <Paper
563
563
  sx={{
564
564
  display: "flex",
565
- flexDirection: "column",
566
- width:600,
565
+ flexDirection: "column",
566
+ width: 600,
567
567
  padding: 2,
568
568
  margin: 1,
569
569
  alignItems: "center",