@pega/react-sdk-overrides 0.25.2 → 0.25.4
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/designSystemExtension/Banner/Banner.css +1 -1
- package/lib/designSystemExtension/Banner/Banner.tsx +7 -7
- package/lib/designSystemExtension/CaseSummaryFields/CaseSummaryFields.tsx +8 -10
- package/lib/designSystemExtension/DetailsFields/DetailsFields.tsx +11 -13
- package/lib/designSystemExtension/FieldGroup/FieldGroup.tsx +7 -8
- package/lib/designSystemExtension/FieldGroupList/FieldGroupList.tsx +9 -9
- package/lib/designSystemExtension/FieldValueList/FieldValueList.tsx +7 -8
- package/lib/designSystemExtension/Operator/Operator.tsx +11 -12
- package/lib/designSystemExtension/RichTextEditor/RichTextEditor.tsx +28 -3
- package/lib/designSystemExtension/WssQuickCreate/WssQuickCreate.css +4 -4
- package/lib/designSystemExtension/WssQuickCreate/WssQuickCreate.tsx +1 -1
- package/lib/field/CancelAlert/CancelAlert.css +4 -4
- package/lib/field/CancelAlert/CancelAlert.tsx +5 -5
- package/lib/field/Checkbox/Checkbox.tsx +96 -3
- package/lib/field/Currency/currency-utils.ts +1 -2
- package/lib/field/Dropdown/Dropdown.tsx +0 -2
- package/lib/field/Group/Group.tsx +5 -5
- package/lib/field/Location/Location.tsx +256 -0
- package/lib/field/Location/config-ext.json +8 -0
- package/lib/field/Location/index.tsx +1 -0
- package/lib/field/ObjectReference/ObjectReference.tsx +235 -0
- package/lib/field/ObjectReference/index.tsx +1 -0
- package/lib/field/ObjectReference/utils.ts +111 -0
- package/lib/field/RadioButtons/RadioButtons.tsx +46 -1
- package/lib/field/ScalarList/ScalarList.tsx +1 -2
- package/lib/field/SelectableCard/SelectableCard.tsx +175 -0
- package/lib/field/SelectableCard/index.tsx +1 -0
- package/lib/field/SelectableCard/utils.tsx +226 -0
- package/lib/field/SemanticLink/SemanticLink.tsx +159 -27
- package/lib/field/SemanticLink/utils.ts +1 -1
- package/lib/field/TextContent/TextContent.tsx +0 -1
- package/lib/field/UserReference/UserReference.tsx +0 -1
- package/lib/helpers/attachmentHelpers.ts +56 -35
- package/lib/helpers/common-utils.ts +2 -2
- package/lib/helpers/data_page.ts +0 -1
- package/lib/helpers/formatters/CurrencyMap.ts +0 -2
- package/lib/helpers/simpleTableHelpers.ts +117 -5
- package/lib/helpers/utils.ts +8 -1
- package/lib/helpers/versionHelpers.ts +0 -1
- package/lib/infra/ActionButtons/ActionButtons.tsx +28 -21
- package/lib/infra/Assignment/Assignment.tsx +2 -2
- package/lib/infra/Containers/FlowContainer/FlowContainer.tsx +14 -93
- package/lib/infra/Containers/ModalViewContainer/ListViewActionButtons/ListViewActionButtons.tsx +0 -1
- package/lib/infra/Containers/ModalViewContainer/ModalViewContainer.tsx +2 -2
- package/lib/infra/Containers/ViewContainer/ViewContainer.tsx +3 -4
- package/lib/infra/Containers/container-helpers.ts +47 -1
- package/lib/infra/DashboardFilter/DashboardFilter.tsx +0 -2
- package/lib/infra/DashboardFilter/filterUtils.tsx +3 -4
- package/lib/infra/DeferLoad/DeferLoad.tsx +1 -3
- package/lib/infra/ErrorBoundary/ErrorBoundary.tsx +0 -2
- package/lib/infra/MultiStep/MultiStep.css +8 -8
- package/lib/infra/NavBar/NavBar.css +1 -1
- package/lib/infra/NavBar/NavBar.tsx +3 -4
- package/lib/infra/Reference/Reference.tsx +2 -3
- package/lib/infra/RootContainer/RootContainer.tsx +0 -1
- package/lib/template/AdvancedSearch/AdvancedSearch.tsx +0 -1
- package/lib/template/AdvancedSearch/SearchGroup/persistUtils.ts +3 -9
- package/lib/template/AdvancedSearch/SearchGroups/SearchGroups.tsx +3 -4
- package/lib/template/AdvancedSearch/SearchGroups/hooks.ts +1 -1
- package/lib/template/AppShell/AppShell.css +1 -1
- package/lib/template/AppShell/AppShell.tsx +4 -8
- package/lib/template/CaseSummary/CaseSummary.tsx +0 -1
- package/lib/template/CaseView/CaseView.tsx +13 -19
- package/lib/template/Confirmation/Confirmation.tsx +0 -1
- package/lib/template/DataReference/DataReference.tsx +7 -10
- package/lib/template/DataReference/SearchForm.tsx +6 -5
- package/lib/template/DataReference/{utils.js → utils.ts} +3 -3
- package/lib/template/DefaultForm/DefaultForm.tsx +1 -1
- package/lib/template/DefaultPage/DefaultPage.tsx +88 -0
- package/lib/template/DefaultPage/index.tsx +1 -0
- package/lib/template/Details/Details/Details.tsx +10 -10
- package/lib/template/Details/DetailsThreeColumn/DetailsThreeColumn.tsx +10 -10
- package/lib/template/Details/DetailsTwoColumn/DetailsTwoColumn.tsx +10 -10
- package/lib/template/FieldGroupTemplate/FieldGroupTemplate.tsx +1 -2
- package/lib/template/InlineDashboard/InlineDashboard.tsx +12 -14
- package/lib/template/ListView/ListView.tsx +8 -20
- package/lib/template/ListView/hooks.ts +1 -5
- package/lib/template/ListView/utils.ts +1 -1
- package/lib/template/NarrowWide/NarrowWide/NarrowWide.tsx +3 -3
- package/lib/template/NarrowWide/NarrowWideDetails/NarrowWideDetails.tsx +10 -10
- package/lib/template/OneColumn/OneColumn/OneColumn.tsx +5 -5
- package/lib/template/PromotedFilters/PromotedFilters.tsx +0 -1
- package/lib/template/SelfServiceCaseView/SelfServiceCaseView.tsx +3 -0
- package/lib/template/SelfServiceCaseView/index.tsx +1 -0
- package/lib/template/SimpleTable/SimpleTable/SimpleTable.tsx +1 -2
- package/lib/template/SimpleTable/SimpleTableManual/SimpleTableManual.tsx +33 -30
- package/lib/template/TwoColumn/TwoColumn/TwoColumn.tsx +1 -2
- package/lib/template/TwoColumn/TwoColumnTab/TwoColumnTab.tsx +1 -2
- package/lib/template/WideNarrow/WideNarrow/WideNarrow.tsx +3 -3
- package/lib/template/WideNarrow/WideNarrowDetails/WideNarrowDetails.tsx +10 -10
- package/lib/template/WssNavBar/WssNavBar.css +1 -1
- package/lib/template/WssNavBar/WssNavBar.tsx +4 -4
- package/lib/widget/Attachment/Attachment.css +6 -8
- package/lib/widget/Attachment/Attachment.tsx +61 -57
- package/lib/widget/CaseHistory/CaseHistory.tsx +3 -3
- package/lib/widget/FileUtility/ActionButtonsForFileUtil/ActionButtonsForFileUtil.css +0 -14
- package/lib/widget/FileUtility/ActionButtonsForFileUtil/ActionButtonsForFileUtil.tsx +2 -2
- package/lib/widget/FileUtility/FileUtility/FileUtility.css +7 -6
- package/lib/widget/FileUtility/FileUtility/FileUtility.tsx +4 -6
- package/lib/widget/Followers/Followers.tsx +0 -2
- package/lib/widget/QuickCreate/QuickCreate.tsx +0 -1
- package/lib/widget/SummaryItem/SummaryItem.css +9 -11
- package/lib/widget/SummaryItem/SummaryItem.tsx +1 -1
- package/lib/widget/ToDo/ToDo.css +1 -13
- package/lib/widget/ToDo/ToDo.tsx +15 -7
- package/package.json +1 -1
- /package/lib/template/DataReference/{DataReferenceAdvancedSearchContext.js → DataReferenceAdvancedSearchContext.ts} +0 -0
|
@@ -6,11 +6,11 @@ interface NarrowWideProps extends PConnProps {
|
|
|
6
6
|
// If any, enter additional props that only exist on this component
|
|
7
7
|
a: any;
|
|
8
8
|
b: any;
|
|
9
|
-
|
|
9
|
+
|
|
10
10
|
title?: string;
|
|
11
|
-
|
|
11
|
+
|
|
12
12
|
cols?: string;
|
|
13
|
-
|
|
13
|
+
|
|
14
14
|
icon?: string;
|
|
15
15
|
}
|
|
16
16
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { createElement } from 'react';
|
|
2
|
-
import
|
|
2
|
+
import Grid2, { type GridSize } from '@mui/material/Grid2';
|
|
3
3
|
|
|
4
4
|
import createPConnectComponent from '@pega/react-sdk-components/lib/bridge/react_pconnect';
|
|
5
5
|
import { getComponentFromMap } from '@pega/react-sdk-components/lib/bridge/helpers/sdk_component_map';
|
|
@@ -31,7 +31,7 @@ export default function NarrowWideDetails(props: NarrowWideDetailsProps) {
|
|
|
31
31
|
const children = (getPConnect().getChildren() as any[]).map((configObject, index) =>
|
|
32
32
|
createElement(createPConnectComponent(), {
|
|
33
33
|
...configObject,
|
|
34
|
-
|
|
34
|
+
|
|
35
35
|
key: index.toString()
|
|
36
36
|
})
|
|
37
37
|
);
|
|
@@ -56,21 +56,21 @@ export default function NarrowWideDetails(props: NarrowWideDetailsProps) {
|
|
|
56
56
|
return (
|
|
57
57
|
<FieldGroup name={propsToUse.showLabel ? propsToUse.label : ''}>
|
|
58
58
|
{showHighlightedData && highlightedDataArr.length > 0 && (
|
|
59
|
-
<
|
|
59
|
+
<Grid2 container spacing={1} style={{ padding: '0 0 1em' }}>
|
|
60
60
|
{highlightedDataArr.map((child, i) => (
|
|
61
|
-
<
|
|
61
|
+
<Grid2 size={{ xs: COLUMN_WIDTHS[i] as GridSize }} key={`hf-${i + 1}`}>
|
|
62
62
|
{child}
|
|
63
|
-
</
|
|
63
|
+
</Grid2>
|
|
64
64
|
))}
|
|
65
|
-
</
|
|
65
|
+
</Grid2>
|
|
66
66
|
)}
|
|
67
|
-
<
|
|
67
|
+
<Grid2 container spacing={1}>
|
|
68
68
|
{children.map((child, i) => (
|
|
69
|
-
<
|
|
69
|
+
<Grid2 size={{ xs: COLUMN_WIDTHS[i] as GridSize }} key={`r-${i + 1}`}>
|
|
70
70
|
{child}
|
|
71
|
-
</
|
|
71
|
+
</Grid2>
|
|
72
72
|
))}
|
|
73
|
-
</
|
|
73
|
+
</Grid2>
|
|
74
74
|
</FieldGroup>
|
|
75
75
|
);
|
|
76
76
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { PropsWithChildren, ReactElement } from 'react';
|
|
2
|
-
import
|
|
2
|
+
import Grid2 from '@mui/material/Grid2';
|
|
3
3
|
import makeStyles from '@mui/styles/makeStyles';
|
|
4
4
|
import type { PConnProps } from '@pega/react-sdk-components/lib/types/PConnProps';
|
|
5
5
|
|
|
@@ -21,12 +21,12 @@ export default function OneColumn(props: PropsWithChildren<OneColumnProps>) {
|
|
|
21
21
|
const { children } = props;
|
|
22
22
|
|
|
23
23
|
return (
|
|
24
|
-
<
|
|
25
|
-
<
|
|
24
|
+
<Grid2 container spacing={2}>
|
|
25
|
+
<Grid2 size={{ xs: 12 }} className={classes.colStyles}>
|
|
26
26
|
{(children as ReactElement[]).map(child => {
|
|
27
27
|
return child;
|
|
28
28
|
})}
|
|
29
|
-
</
|
|
30
|
-
</
|
|
29
|
+
</Grid2>
|
|
30
|
+
</Grid2>
|
|
31
31
|
);
|
|
32
32
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from './SelfServiceCaseView';
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/* eslint-disable react-hooks/rules-of-hooks */
|
|
2
1
|
import { useRef } from 'react';
|
|
3
2
|
|
|
4
3
|
import { buildMetaForListView, getContext } from '@pega/react-sdk-components/lib/components/helpers/simpleTableHelpers';
|
|
@@ -90,7 +89,7 @@ export default function SimpleTable(props: SimpleTableProps) {
|
|
|
90
89
|
);
|
|
91
90
|
|
|
92
91
|
const metaForPConnect = JSON.parse(JSON.stringify(metaForListView));
|
|
93
|
-
// @ts-
|
|
92
|
+
// @ts-expect-error - PCore.getMetadataUtils().getPropertyMetadata - An argument for 'currentClassID' was not provided.
|
|
94
93
|
metaForPConnect.config.parameters = rawParams ?? PCore.getMetadataUtils().getPropertyMetadata(name)?.datasource?.parameters;
|
|
95
94
|
|
|
96
95
|
const { referenceListStr: referenceList } = getContext(getPConnect());
|
|
@@ -74,7 +74,7 @@ const useStyles = makeStyles((/* theme */) => ({
|
|
|
74
74
|
fontSize: '14px'
|
|
75
75
|
},
|
|
76
76
|
header: {
|
|
77
|
-
background: '
|
|
77
|
+
background: 'var(--table-header-background)'
|
|
78
78
|
},
|
|
79
79
|
tableCell: {
|
|
80
80
|
borderRight: '1px solid lightgray',
|
|
@@ -163,6 +163,7 @@ export default function SimpleTableManual(props: PropsWithChildren<SimpleTableMa
|
|
|
163
163
|
const menuIconOverride$ = Utils.getImageSrc('trash', Utils.getSDKStaticConentUrl());
|
|
164
164
|
|
|
165
165
|
const resolvedFields = children?.[0]?.children || presets?.[0].children?.[0].children;
|
|
166
|
+
const primaryFieldsViewIndex = resolvedFields.findIndex(field => field.config.value === 'pyPrimaryFields');
|
|
166
167
|
// NOTE: props has each child.config with datasource and value undefined
|
|
167
168
|
// but getRawMetadata() has each child.config with datasource and value showing their unresolved values (ex: "@P thePropName")
|
|
168
169
|
// We need to use the prop name as the "glue" to tie the table dataSource, displayColumns and data together.
|
|
@@ -194,10 +195,8 @@ export default function SimpleTableManual(props: PropsWithChildren<SimpleTableMa
|
|
|
194
195
|
});
|
|
195
196
|
|
|
196
197
|
useEffect(() => {
|
|
197
|
-
// eslint-disable-next-line @typescript-eslint/no-use-before-define
|
|
198
198
|
buildElementsForTable();
|
|
199
199
|
if (readOnlyMode || allowEditingInModal) {
|
|
200
|
-
// eslint-disable-next-line @typescript-eslint/no-use-before-define
|
|
201
200
|
generateRowsData();
|
|
202
201
|
}
|
|
203
202
|
}, [referenceList]);
|
|
@@ -208,7 +207,10 @@ export default function SimpleTableManual(props: PropsWithChildren<SimpleTableMa
|
|
|
208
207
|
// Constellation DX Components do). It will also have the "label", and "meta" contains the original,
|
|
209
208
|
// unchanged config info. For now, much of the info here is carried over from
|
|
210
209
|
// Constellation DX Components.
|
|
211
|
-
const fieldDefs = buildFieldsForTable(rawFields,
|
|
210
|
+
const fieldDefs = buildFieldsForTable(rawFields, getPConnect(), showDeleteButton, {
|
|
211
|
+
primaryFieldsViewIndex,
|
|
212
|
+
fields: resolvedFields
|
|
213
|
+
});
|
|
212
214
|
|
|
213
215
|
useLayoutEffect(() => {
|
|
214
216
|
if (allowEditingInModal) {
|
|
@@ -219,7 +221,7 @@ export default function SimpleTableManual(props: PropsWithChildren<SimpleTableMa
|
|
|
219
221
|
fieldDefs.filter(item => item.name).map(item => item.name)
|
|
220
222
|
);
|
|
221
223
|
} else {
|
|
222
|
-
// @ts-
|
|
224
|
+
// @ts-expect-error - An argument for 'fields' was not provided
|
|
223
225
|
getPConnect().getListActions().initDefaultPageInstructions(getPConnect().getReferenceList());
|
|
224
226
|
}
|
|
225
227
|
}, []);
|
|
@@ -246,7 +248,7 @@ export default function SimpleTableManual(props: PropsWithChildren<SimpleTableMa
|
|
|
246
248
|
|
|
247
249
|
// return the value that should be shown as the contents for the given row data
|
|
248
250
|
// of the given row field
|
|
249
|
-
function getRowValue(inRowData:
|
|
251
|
+
function getRowValue(inRowData: object, inColKey: string): any {
|
|
250
252
|
// See what data (if any) we have to display
|
|
251
253
|
const refKeys: string[] = inColKey?.split('.');
|
|
252
254
|
let valBuilder = inRowData;
|
|
@@ -277,7 +279,6 @@ export default function SimpleTableManual(props: PropsWithChildren<SimpleTableMa
|
|
|
277
279
|
setRowData(data);
|
|
278
280
|
})
|
|
279
281
|
.catch(e => {
|
|
280
|
-
// eslint-disable-next-line no-console
|
|
281
282
|
console.log(e);
|
|
282
283
|
});
|
|
283
284
|
} else {
|
|
@@ -286,7 +287,7 @@ export default function SimpleTableManual(props: PropsWithChildren<SimpleTableMa
|
|
|
286
287
|
// we're using as the table's dataSource
|
|
287
288
|
const data: any = [];
|
|
288
289
|
for (const row of referenceList) {
|
|
289
|
-
const dataForRow:
|
|
290
|
+
const dataForRow: object = {};
|
|
290
291
|
for (const col of displayedColumns) {
|
|
291
292
|
const colKey: string = col;
|
|
292
293
|
const theVal = getRowValue(row, colKey);
|
|
@@ -318,7 +319,7 @@ export default function SimpleTableManual(props: PropsWithChildren<SimpleTableMa
|
|
|
318
319
|
if (allowEditingInModal && defaultView) {
|
|
319
320
|
pConn
|
|
320
321
|
.getActionsApi()
|
|
321
|
-
// @ts-
|
|
322
|
+
// @ts-expect-error
|
|
322
323
|
.openEmbeddedDataModal(defaultView, pConn, referenceListStr, referenceList.length, PCore.getConstants().RESOURCE_STATUS.CREATE);
|
|
323
324
|
} else {
|
|
324
325
|
pConn.getListActions().insert({ classID: contextClass }, referenceList.length);
|
|
@@ -334,7 +335,7 @@ export default function SimpleTableManual(props: PropsWithChildren<SimpleTableMa
|
|
|
334
335
|
if (typeof selectedRowIndex.current === 'number') {
|
|
335
336
|
pConn
|
|
336
337
|
.getActionsApi()
|
|
337
|
-
// @ts-
|
|
338
|
+
// @ts-expect-error
|
|
338
339
|
.openEmbeddedDataModal(
|
|
339
340
|
bUseSeparateViewForEdit ? editView : defaultView,
|
|
340
341
|
pConn,
|
|
@@ -360,23 +361,25 @@ export default function SimpleTableManual(props: PropsWithChildren<SimpleTableMa
|
|
|
360
361
|
const data: any = [];
|
|
361
362
|
rawFields.forEach(item => {
|
|
362
363
|
// removing label field from config to hide title in the table cell
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
364
|
+
if (!item.config.hide) {
|
|
365
|
+
item = { ...item, config: { ...item.config, label: '', displayMode: readOnlyMode || allowEditingInModal ? 'DISPLAY_ONLY' : undefined } };
|
|
366
|
+
const referenceListData = getReferenceList(pConn);
|
|
367
|
+
const isDatapage = referenceListData.startsWith('D_');
|
|
368
|
+
const pageReferenceValue = isDatapage
|
|
369
|
+
? `${referenceListData}[${index}]`
|
|
370
|
+
: `${pConn.getPageReference()}${referenceListData.substring(referenceListData.lastIndexOf('.'))}[${index}]`;
|
|
371
|
+
const config = {
|
|
372
|
+
meta: item,
|
|
373
|
+
options: {
|
|
374
|
+
context,
|
|
375
|
+
pageReference: pageReferenceValue,
|
|
376
|
+
referenceList: referenceListData,
|
|
377
|
+
hasForm: true
|
|
378
|
+
}
|
|
379
|
+
};
|
|
380
|
+
const view = PCore.createPConnect(config);
|
|
381
|
+
data.push(createElement(createPConnectComponent(), view));
|
|
382
|
+
}
|
|
380
383
|
});
|
|
381
384
|
eleData.push(data);
|
|
382
385
|
});
|
|
@@ -419,7 +422,6 @@ export default function SimpleTableManual(props: PropsWithChildren<SimpleTableMa
|
|
|
419
422
|
function stableSort<T>(array: T[], comparator: (a: T, b: T) => number) {
|
|
420
423
|
const stabilizedThis = array.map((el, index) => [el, index] as [T, number]);
|
|
421
424
|
stabilizedThis.sort((a, b) => {
|
|
422
|
-
// eslint-disable-next-line @typescript-eslint/no-shadow
|
|
423
425
|
const order = comparator(a[0], b[0]);
|
|
424
426
|
if (order !== 0) return order;
|
|
425
427
|
return a[1] - b[1];
|
|
@@ -574,7 +576,6 @@ export default function SimpleTableManual(props: PropsWithChildren<SimpleTableMa
|
|
|
574
576
|
function _showFilteredIcon(columnId) {
|
|
575
577
|
for (const filterObj of filterByColumns) {
|
|
576
578
|
if (filterObj.ref === columnId) {
|
|
577
|
-
// eslint-disable-next-line sonarjs/prefer-single-boolean-return
|
|
578
579
|
if (filterObj.containsFilterValue !== '') {
|
|
579
580
|
return true;
|
|
580
581
|
}
|
|
@@ -608,6 +609,9 @@ export default function SimpleTableManual(props: PropsWithChildren<SimpleTableMa
|
|
|
608
609
|
<TableHead className={classes.header}>
|
|
609
610
|
<TableRow>
|
|
610
611
|
{fieldDefs.map((field: any, index) => {
|
|
612
|
+
if (field?.meta?.config?.hide) {
|
|
613
|
+
return null; // Skip rendering if hide = true
|
|
614
|
+
}
|
|
611
615
|
return (
|
|
612
616
|
<TableCell key={`head-${displayedColumns[index]}`} className={classes.tableCell}>
|
|
613
617
|
{(readOnlyMode || allowEditingInModal) && field.cellRenderer !== 'DeleteIcon' ? (
|
|
@@ -678,7 +682,6 @@ export default function SimpleTableManual(props: PropsWithChildren<SimpleTableMa
|
|
|
678
682
|
.slice(0)
|
|
679
683
|
.map((row, index) => {
|
|
680
684
|
return (
|
|
681
|
-
// eslint-disable-next-line react/no-array-index-key
|
|
682
685
|
<TableRow key={index}>
|
|
683
686
|
{row.map((item, childIndex) => {
|
|
684
687
|
const theColKey = displayedColumns[childIndex];
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { PropsWithChildren, ReactElement } from 'react';
|
|
2
|
-
import
|
|
2
|
+
import Grid2, { type GridSize } from '@mui/material/Grid2';
|
|
3
3
|
import makeStyles from '@mui/styles/makeStyles';
|
|
4
4
|
import type { PConnProps } from '@pega/react-sdk-components/lib/types/PConnProps';
|
|
5
5
|
|
|
@@ -23,7 +23,6 @@ export default function TwoColumn(props: PropsWithChildren<TwoColumnProps>) {
|
|
|
23
23
|
const childrenToRender = children as ReactElement[];
|
|
24
24
|
|
|
25
25
|
if (childrenToRender.length !== 2) {
|
|
26
|
-
// eslint-disable-next-line no-console
|
|
27
26
|
console.error(`TwoColumn template sees more than 2 columns: ${childrenToRender.length}`);
|
|
28
27
|
}
|
|
29
28
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { PropsWithChildren, ReactElement } from 'react';
|
|
2
|
-
import
|
|
2
|
+
import Grid2, { type GridSize } from '@mui/material/Grid2';
|
|
3
3
|
import makeStyles from '@mui/styles/makeStyles';
|
|
4
4
|
import type { PConnProps } from '@pega/react-sdk-components/lib/types/PConnProps';
|
|
5
5
|
|
|
@@ -23,7 +23,6 @@ export default function TwoColumnTab(props: PropsWithChildren<TwoColumnTabProps>
|
|
|
23
23
|
const childrenToRender = children as ReactElement[];
|
|
24
24
|
|
|
25
25
|
if (childrenToRender.length !== 2) {
|
|
26
|
-
// eslint-disable-next-line no-console
|
|
27
26
|
console.error(`TwoColumn template sees more than 2 columns: ${childrenToRender.length}`);
|
|
28
27
|
}
|
|
29
28
|
|
|
@@ -6,11 +6,11 @@ interface WideNarrowProps extends PConnProps {
|
|
|
6
6
|
// If any, enter additional props that only exist on this component
|
|
7
7
|
a: any;
|
|
8
8
|
b: any;
|
|
9
|
-
|
|
9
|
+
|
|
10
10
|
title?: string;
|
|
11
|
-
|
|
11
|
+
|
|
12
12
|
cols?: string;
|
|
13
|
-
|
|
13
|
+
|
|
14
14
|
icon?: string;
|
|
15
15
|
}
|
|
16
16
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { createElement } from 'react';
|
|
2
|
-
import
|
|
2
|
+
import Grid2, { type GridSize } from '@mui/material/Grid2';
|
|
3
3
|
|
|
4
4
|
import createPConnectComponent from '@pega/react-sdk-components/lib/bridge/react_pconnect';
|
|
5
5
|
import { getComponentFromMap } from '@pega/react-sdk-components/lib/bridge/helpers/sdk_component_map';
|
|
@@ -36,7 +36,7 @@ export default function WideNarrowDetails(props: WideNarrowDetailsProps) {
|
|
|
36
36
|
|
|
37
37
|
return createElement(createPConnectComponent(), {
|
|
38
38
|
...theConfigObject,
|
|
39
|
-
|
|
39
|
+
|
|
40
40
|
key: index.toString()
|
|
41
41
|
});
|
|
42
42
|
});
|
|
@@ -66,21 +66,21 @@ export default function WideNarrowDetails(props: WideNarrowDetailsProps) {
|
|
|
66
66
|
return (
|
|
67
67
|
<FieldGroup name={theName}>
|
|
68
68
|
{showHighlightedData && highlightedDataArr.length > 0 && (
|
|
69
|
-
<
|
|
69
|
+
<Grid2 container spacing={1} style={{ padding: '0 0 1em' }}>
|
|
70
70
|
{highlightedDataArr.map((child, i) => (
|
|
71
|
-
<
|
|
71
|
+
<Grid2 size={{ xs: COLUMN_WIDTHS[i] as GridSize }} key={`hf-${i + 1}`}>
|
|
72
72
|
{child}
|
|
73
|
-
</
|
|
73
|
+
</Grid2>
|
|
74
74
|
))}
|
|
75
|
-
</
|
|
75
|
+
</Grid2>
|
|
76
76
|
)}
|
|
77
|
-
<
|
|
77
|
+
<Grid2 container spacing={1}>
|
|
78
78
|
{children?.map((child, i) => (
|
|
79
|
-
<
|
|
79
|
+
<Grid2 size={{ xs: COLUMN_WIDTHS[i] as GridSize }} key={`r-${i + 1}`}>
|
|
80
80
|
{child}
|
|
81
|
-
</
|
|
81
|
+
</Grid2>
|
|
82
82
|
))}
|
|
83
|
-
</
|
|
83
|
+
</Grid2>
|
|
84
84
|
</FieldGroup>
|
|
85
85
|
);
|
|
86
86
|
}
|
|
@@ -17,10 +17,10 @@ interface WssNavBarProps extends PConnProps {
|
|
|
17
17
|
navLinks: any[];
|
|
18
18
|
operator: { currentUserInitials: string };
|
|
19
19
|
navDisplayOptions: { alignment: string; position: string };
|
|
20
|
-
|
|
20
|
+
|
|
21
21
|
portalName: string;
|
|
22
22
|
imageSrc: string;
|
|
23
|
-
|
|
23
|
+
|
|
24
24
|
fullImageSrc: string;
|
|
25
25
|
appName: any;
|
|
26
26
|
}
|
|
@@ -36,10 +36,10 @@ const useStyles = makeStyles(theme => ({
|
|
|
36
36
|
marginRight: theme.spacing(2)
|
|
37
37
|
},
|
|
38
38
|
appListLogo: {
|
|
39
|
-
width: '3.6rem'
|
|
39
|
+
width: '3.6rem',
|
|
40
|
+
filter: 'var(--svg-color)'
|
|
40
41
|
},
|
|
41
42
|
appName: {
|
|
42
|
-
color: 'white',
|
|
43
43
|
marginLeft: theme.spacing(2),
|
|
44
44
|
marginRight: theme.spacing(4),
|
|
45
45
|
fontSize: '1.5rem'
|
|
@@ -42,6 +42,10 @@
|
|
|
42
42
|
flex-direction: row;
|
|
43
43
|
padding: 0.25rem 0rem 0.25rem 0.25rem;
|
|
44
44
|
margin-bottom: 0.5rem;
|
|
45
|
+
align-items: center;
|
|
46
|
+
border: 0.0625rem solid var(--utility-card-border-color);
|
|
47
|
+
border-radius: calc(0.25rem);
|
|
48
|
+
min-height: 3rem;
|
|
45
49
|
}
|
|
46
50
|
|
|
47
51
|
.psdk-utility-card-icon {
|
|
@@ -54,6 +58,7 @@
|
|
|
54
58
|
.psdk-utility-card-svg-icon {
|
|
55
59
|
width: 2.5rem;
|
|
56
60
|
display: inline-block;
|
|
61
|
+
filter: var(--svg-color);
|
|
57
62
|
}
|
|
58
63
|
|
|
59
64
|
.psdk-utility-card-main {
|
|
@@ -71,14 +76,7 @@
|
|
|
71
76
|
.psdk-utility-card-action-svg-icon {
|
|
72
77
|
width: 1.4rem;
|
|
73
78
|
display: inline-block;
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
.psdk-utility-card {
|
|
77
|
-
display: flex;
|
|
78
|
-
align-items: center;
|
|
79
|
-
border: 0.0625rem solid rgb(207, 207, 207);
|
|
80
|
-
border-radius: calc(0.25rem);
|
|
81
|
-
min-height: 3rem;
|
|
79
|
+
filter: var(--svg-color);
|
|
82
80
|
}
|
|
83
81
|
|
|
84
82
|
.psdk-utility-button {
|