@pega/react-sdk-overrides 0.24.1 → 0.24.2
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/lib/field/CancelAlert/CancelAlert.tsx +2 -0
- package/lib/field/Multiselect/Multiselect.tsx +1 -1
- package/lib/field/ScalarList/ScalarList.tsx +2 -0
- package/lib/infra/Assignment/Assignment.tsx +2 -1
- package/lib/infra/DashboardFilter/DashboardFilter.tsx +1 -1
- package/lib/infra/DeferLoad/DeferLoad.tsx +1 -1
- package/lib/template/DataReference/DataReference.tsx +1 -1
- package/lib/template/Details/Details/Details.tsx +1 -1
- package/lib/template/Details/DetailsThreeColumn/DetailsThreeColumn.tsx +1 -1
- package/lib/template/Details/DetailsTwoColumn/DetailsTwoColumn.tsx +1 -1
- package/lib/template/FieldGroupTemplate/FieldGroupTemplate.tsx +2 -0
- package/lib/template/ListView/ListView.tsx +2 -0
- package/lib/template/MultiReferenceReadOnly/MultiReferenceReadOnly.tsx +1 -1
- package/lib/template/NarrowWide/NarrowWideDetails/NarrowWideDetails.tsx +1 -1
- package/lib/template/PromotedFilters/PromotedFilters.tsx +1 -0
- package/lib/template/SimpleTable/SimpleTableManual/SimpleTableManual.tsx +4 -0
- package/lib/template/SingleReferenceReadOnly/SingleReferenceReadOnly.tsx +1 -1
- package/lib/template/WideNarrow/WideNarrowDetails/WideNarrowDetails.tsx +1 -1
- package/lib/widget/Attachment/Attachment.tsx +2 -0
- package/lib/widget/QuickCreate/QuickCreate.tsx +1 -0
- package/package.json +1 -1
|
@@ -21,6 +21,7 @@ export default function CancelAlert(props: CancelAlertProps) {
|
|
|
21
21
|
const actionsAPI = getPConnect().getActionsApi();
|
|
22
22
|
const containerManagerAPI = getPConnect().getContainerManager();
|
|
23
23
|
const isLocalAction = getPConnect().getValue(PCore.getConstants().CASE_INFO.IS_LOCAL_ACTION);
|
|
24
|
+
// @ts-ignore - Property 'options' is private and only accessible within class 'C11nEnv'.
|
|
24
25
|
const isBulkAction = getPConnect()?.options?.isBulkAction;
|
|
25
26
|
const localizedVal = PCore.getLocaleUtils().getLocaleValue;
|
|
26
27
|
const broadCastUtils: any = PCore.getCoexistenceManager().getBroadcastUtils();
|
|
@@ -83,6 +84,7 @@ export default function CancelAlert(props: CancelAlertProps) {
|
|
|
83
84
|
actionsAPI.cancelBulkAction(containerItemID);
|
|
84
85
|
} else {
|
|
85
86
|
dismiss(true);
|
|
87
|
+
// @ts-ignore - Argument of type '{ containerItemID: string; skipReleaseLockRequest: any; }' is not assignable to parameter of type 'ContainerInfo'.
|
|
86
88
|
containerManagerAPI.removeContainerItem({ containerItemID, skipReleaseLockRequest });
|
|
87
89
|
}
|
|
88
90
|
}
|
|
@@ -115,7 +115,7 @@ export default function Multiselect(props) {
|
|
|
115
115
|
const pConn = getPConnect();
|
|
116
116
|
const contextName = pConn.getContextName();
|
|
117
117
|
const listActions = pConn.getListActions();
|
|
118
|
-
const dataApiObj = useRef();
|
|
118
|
+
const dataApiObj: any = useRef();
|
|
119
119
|
|
|
120
120
|
// main search function trigger
|
|
121
121
|
const getCaseListBasedOnParams = async (searchText, group, selectedRows, currentItemsTree, isTriggeredFromSearch = false) => {
|
|
@@ -36,10 +36,12 @@ export default function ScalarList(props: ScalarListProps) {
|
|
|
36
36
|
{
|
|
37
37
|
type: componentType,
|
|
38
38
|
config: {
|
|
39
|
+
// @ts-ignore - Type '{ readOnly: true; displayInModal: boolean; value: any; displayMode: string; label: string; }' is not assignable to type 'ComponentMetadataConfig'.
|
|
39
40
|
value: scalarValue,
|
|
40
41
|
displayMode: 'LABELS_LEFT',
|
|
41
42
|
label,
|
|
42
43
|
...restProps,
|
|
44
|
+
// @ts-ignore - Type 'string' is not assignable to type 'boolean | undefined'.
|
|
43
45
|
readOnly: 'true'
|
|
44
46
|
}
|
|
45
47
|
},
|
|
@@ -167,6 +167,7 @@ export default function Assignment(props: PropsWithChildren<AssignmentProps>) {
|
|
|
167
167
|
|
|
168
168
|
savePromise
|
|
169
169
|
.then(() => {
|
|
170
|
+
// @ts-ignore - Property 'c11nEnv' is private and only accessible within class 'CaseInfo'.
|
|
170
171
|
const caseType = thePConn.getCaseInfo().c11nEnv.getValue(PCore.getConstants().CASE_INFO.CASE_TYPE_ID);
|
|
171
172
|
onSaveActionSuccess({ caseType, caseID, assignmentID });
|
|
172
173
|
})
|
|
@@ -263,7 +264,7 @@ export default function Assignment(props: PropsWithChildren<AssignmentProps>) {
|
|
|
263
264
|
refreshProps.forEach(prop => {
|
|
264
265
|
PCore.getRefreshManager().registerForRefresh(
|
|
265
266
|
'PROP_CHANGE',
|
|
266
|
-
thePConn.getActionsApi().refreshCaseView.bind(thePConn.getActionsApi(), caseKey,
|
|
267
|
+
thePConn.getActionsApi().refreshCaseView.bind(thePConn.getActionsApi(), caseKey, '', pageReference, {
|
|
267
268
|
...refreshOptions,
|
|
268
269
|
refreshFor: prop[0]
|
|
269
270
|
}),
|
|
@@ -97,7 +97,7 @@ export default function DashboardFilter(props: PropsWithChildren<DashboardFilter
|
|
|
97
97
|
metadata.config.onRecordChange = e => {
|
|
98
98
|
fireFilterChange(e.id);
|
|
99
99
|
};
|
|
100
|
-
return getPConnect().createComponent(metadata, '',
|
|
100
|
+
return getPConnect().createComponent(metadata, '', 0, {}); // 2nd, 3rd, and 4th args empty string/object/null until typedef marked correctly as optional);
|
|
101
101
|
};
|
|
102
102
|
|
|
103
103
|
const onChange = dates => {
|
|
@@ -137,7 +137,7 @@ export default function DeferLoad(props: DeferLoadProps) {
|
|
|
137
137
|
getPConnect()
|
|
138
138
|
.getActionsApi()
|
|
139
139
|
.refreshCaseView(encodeURI(loadViewCaseID), name, '') // 3rd arg empty string until typedef allows optional
|
|
140
|
-
.then(data => {
|
|
140
|
+
.then((data: any) => {
|
|
141
141
|
onResponse(data.root);
|
|
142
142
|
});
|
|
143
143
|
}
|
|
@@ -128,7 +128,7 @@ export default function DataReference(props: PropsWithChildren<DataReferenceProp
|
|
|
128
128
|
const refreshOptions = { autoDetectRefresh: true };
|
|
129
129
|
if (canBeChangedInReviewMode && pConn.getValue('__currentPageTabViewName', '')) {
|
|
130
130
|
// 2nd arg empty string until typedef marked correctly
|
|
131
|
-
getPConnect().getActionsApi().refreshCaseView(caseKey, pConn.getValue('__currentPageTabViewName', ''),
|
|
131
|
+
getPConnect().getActionsApi().refreshCaseView(caseKey, pConn.getValue('__currentPageTabViewName', ''), '', refreshOptions); // 2nd arg empty string until typedef marked correctly
|
|
132
132
|
PCore.getDeferLoadManager().refreshActiveComponents(pConn.getContextName());
|
|
133
133
|
} else {
|
|
134
134
|
const pgRef = pConn.getPageReference().replace('caseInfo.content', '');
|
|
@@ -46,7 +46,7 @@ export default function Details(props: DetailsProps) {
|
|
|
46
46
|
field.config.displayAsStatus = true;
|
|
47
47
|
}
|
|
48
48
|
|
|
49
|
-
return getPConnect().createComponent(field, '',
|
|
49
|
+
return getPConnect().createComponent(field, '', 0, {}); // 2nd, 3rd, and 4th args empty string/object/null until typedef marked correctly as optional
|
|
50
50
|
});
|
|
51
51
|
}
|
|
52
52
|
|
|
@@ -46,7 +46,7 @@ export default function DetailsThreeColumn(props: DetailsThreeColumnProps) {
|
|
|
46
46
|
field.config.displayAsStatus = true;
|
|
47
47
|
}
|
|
48
48
|
|
|
49
|
-
return getPConnect().createComponent(field, '',
|
|
49
|
+
return getPConnect().createComponent(field, '', 0, {}); // 2nd, 3rd, and 4th args empty string/object/null until typedef marked correctly as optional);
|
|
50
50
|
});
|
|
51
51
|
}
|
|
52
52
|
|
|
@@ -46,7 +46,7 @@ export default function DetailsTwoColumn(props: DetailsTwoColumnProps) {
|
|
|
46
46
|
field.config.displayAsStatus = true;
|
|
47
47
|
}
|
|
48
48
|
|
|
49
|
-
return getPConnect().createComponent(field, '',
|
|
49
|
+
return getPConnect().createComponent(field, '', 0, {}); // 2nd, 3rd, and 4th args empty string/object/null until typedef marked correctly as optional
|
|
50
50
|
});
|
|
51
51
|
}
|
|
52
52
|
|
|
@@ -51,6 +51,7 @@ export default function FieldGroupTemplate(props: FieldGroupTemplateProps) {
|
|
|
51
51
|
if (PCore.getPCoreVersion()?.includes('8.7')) {
|
|
52
52
|
pConn.getListActions().insert({ classID: contextClass }, referenceList.length, pageReference);
|
|
53
53
|
} else {
|
|
54
|
+
// @ts-ignore - An argument for 'pageRef' was not provided.
|
|
54
55
|
pConn.getListActions().insert({}, referenceList.length);
|
|
55
56
|
}
|
|
56
57
|
};
|
|
@@ -63,6 +64,7 @@ export default function FieldGroupTemplate(props: FieldGroupTemplateProps) {
|
|
|
63
64
|
if (PCore.getPCoreVersion()?.includes('8.7')) {
|
|
64
65
|
pConn.getListActions().deleteEntry(index, pageReference);
|
|
65
66
|
} else {
|
|
67
|
+
// @ts-ignore - An argument for 'pageRef' was not provided.
|
|
66
68
|
pConn.getListActions().deleteEntry(index);
|
|
67
69
|
}
|
|
68
70
|
};
|
|
@@ -653,6 +653,7 @@ export default function ListView(props: ListViewProps) {
|
|
|
653
653
|
|
|
654
654
|
thePConn
|
|
655
655
|
.getActionsApi()
|
|
656
|
+
// @ts-ignore
|
|
656
657
|
.openAssignment(pzInsKey, pxRefObjectClass, options)
|
|
657
658
|
.then(() => {
|
|
658
659
|
// console.log("openAssignment successful");
|
|
@@ -885,6 +886,7 @@ export default function ListView(props: ListViewProps) {
|
|
|
885
886
|
pzInsKey = row[`${associationCategory}:pzInsKey`];
|
|
886
887
|
}
|
|
887
888
|
if (column.isAssignmentLink) {
|
|
889
|
+
// @ts-ignore
|
|
888
890
|
thePConn.getActionsApi().openAssignment(pzInsKey, pxObjClass, {
|
|
889
891
|
containerName: 'primary',
|
|
890
892
|
channelName: ''
|
|
@@ -49,7 +49,7 @@ export default function NarrowWideDetails(props: NarrowWideDetailsProps) {
|
|
|
49
49
|
field.config.displayAsStatus = true;
|
|
50
50
|
}
|
|
51
51
|
|
|
52
|
-
return getPConnect().createComponent(field, '',
|
|
52
|
+
return getPConnect().createComponent(field, '', 0, {}); // 2nd, 3rd, and 4th args empty string/object/null until typedef marked correctly as optional
|
|
53
53
|
});
|
|
54
54
|
}
|
|
55
55
|
|
|
@@ -87,6 +87,7 @@ export default function PromotedFilters(props: PromotedFilterProps) {
|
|
|
87
87
|
};
|
|
88
88
|
return getPConnect().getContainerManager().addTransientItem({
|
|
89
89
|
id: viewName,
|
|
90
|
+
// @ts-ignore - Property 'coreHeaders' is missing in type '{ classID: string; }' but required in type '{ coreHeaders: any; }'.
|
|
90
91
|
data: filtersWithClassID
|
|
91
92
|
});
|
|
92
93
|
}, []);
|
|
@@ -201,6 +201,7 @@ export default function SimpleTableManual(props: PropsWithChildren<SimpleTableMa
|
|
|
201
201
|
if (allowEditingInModal) {
|
|
202
202
|
getPConnect()
|
|
203
203
|
.getListActions()
|
|
204
|
+
// @ts-ignore - An argument for 'uniqueField' was not provided.
|
|
204
205
|
.initDefaultPageInstructions(
|
|
205
206
|
getPConnect().getReferenceList(),
|
|
206
207
|
fieldDefs.filter(item => item.name).map(item => item.name)
|
|
@@ -302,6 +303,7 @@ export default function SimpleTableManual(props: PropsWithChildren<SimpleTableMa
|
|
|
302
303
|
.getActionsApi()
|
|
303
304
|
.openEmbeddedDataModal(defaultView, pConn, referenceListStr, referenceList.length, PCore.getConstants().RESOURCE_STATUS.CREATE);
|
|
304
305
|
} else {
|
|
306
|
+
// @ts-ignore - An argument for 'pageRef' was not provided.
|
|
305
307
|
pConn.getListActions().insert({ classID: contextClass }, referenceList.length);
|
|
306
308
|
}
|
|
307
309
|
|
|
@@ -327,10 +329,12 @@ export default function SimpleTableManual(props: PropsWithChildren<SimpleTableMa
|
|
|
327
329
|
|
|
328
330
|
const deleteRecord = () => {
|
|
329
331
|
setEditAnchorEl(null);
|
|
332
|
+
// @ts-ignore - An argument for 'pageRef' was not provided.
|
|
330
333
|
pConn.getListActions().deleteEntry(selectedRowIndex.current);
|
|
331
334
|
};
|
|
332
335
|
|
|
333
336
|
const deleteRecordFromInlineEditable = (index: number) => {
|
|
337
|
+
// @ts-ignore - An argument for 'pageRef' was not provided.
|
|
334
338
|
pConn.getListActions().deleteEntry(index);
|
|
335
339
|
};
|
|
336
340
|
|
|
@@ -54,7 +54,7 @@ export default function WideNarrowDetails(props: WideNarrowDetailsProps) {
|
|
|
54
54
|
field.config.displayAsStatus = true;
|
|
55
55
|
}
|
|
56
56
|
|
|
57
|
-
return getPConnect().createComponent(field, '',
|
|
57
|
+
return getPConnect().createComponent(field, '', 0, {}); // 2nd, 3rd, and 4th args empty string/object/null until typedef marked correctly as optional
|
|
58
58
|
});
|
|
59
59
|
}
|
|
60
60
|
|
|
@@ -160,6 +160,7 @@ export default function Attachment(props: AttachmentProps) {
|
|
|
160
160
|
messages: [
|
|
161
161
|
{
|
|
162
162
|
type: 'error',
|
|
163
|
+
// @ts-ignore - Type '{ type: string; message: string; }' is not assignable to type 'MessagesConfigObject'.
|
|
163
164
|
message: pConn.getLocalizedValue('Error with one or more files', '', '')
|
|
164
165
|
}
|
|
165
166
|
],
|
|
@@ -233,6 +234,7 @@ export default function Attachment(props: AttachmentProps) {
|
|
|
233
234
|
messages: [
|
|
234
235
|
{
|
|
235
236
|
type: 'error',
|
|
237
|
+
// @ts-ignore - Type '{ type: string; message: string; }' is not assignable to type 'MessagesConfigObject'.
|
|
236
238
|
message: pConn.getLocalizedValue('Error with one or more files', '', '')
|
|
237
239
|
}
|
|
238
240
|
],
|
|
@@ -35,6 +35,7 @@ export default function QuickCreate(props: QuickCreateProps) {
|
|
|
35
35
|
const defaultCases: any = [];
|
|
36
36
|
const envInfo = PCore.getEnvironmentInfo();
|
|
37
37
|
if (envInfo?.environmentInfoObject?.pyCaseTypeList) {
|
|
38
|
+
// @ts-ignore - Property 'forEach' does not exist on type 'string'
|
|
38
39
|
envInfo.environmentInfoObject.pyCaseTypeList.forEach(casetype => {
|
|
39
40
|
if (casetype.pyWorkTypeName && casetype.pyWorkTypeImplementationClassName) {
|
|
40
41
|
defaultCases.push({
|
package/package.json
CHANGED