@pega/react-sdk-overrides 23.1.10 → 23.1.12
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/LICENSE +201 -0
- package/README.md +17 -0
- package/SECURITY.md +10 -0
- package/lib/designSystemExtension/AlertBanner/AlertBanner.tsx +6 -14
- package/lib/designSystemExtension/Banner/Banner.tsx +14 -11
- package/lib/designSystemExtension/CaseSummaryFields/CaseSummaryFields.css +0 -1
- package/lib/designSystemExtension/CaseSummaryFields/CaseSummaryFields.tsx +27 -22
- package/lib/designSystemExtension/DetailsFields/DetailsFields.tsx +14 -20
- package/lib/designSystemExtension/DetailsFields/index.tsx +1 -1
- package/lib/designSystemExtension/FieldGroup/FieldGroup.tsx +44 -19
- package/lib/designSystemExtension/FieldGroupList/FieldGroupList.tsx +7 -12
- package/lib/designSystemExtension/FieldValueList/FieldValueList.tsx +21 -32
- package/lib/designSystemExtension/Operator/Operator.tsx +94 -82
- package/lib/designSystemExtension/Pulse/Pulse.tsx +14 -16
- package/lib/designSystemExtension/RichTextEditor/RichTextEditor.tsx +6 -5
- package/lib/designSystemExtension/WssQuickCreate/WssQuickCreate.tsx +14 -14
- package/lib/field/AutoComplete/AutoComplete.tsx +24 -26
- package/lib/field/AutoComplete/config-ext.json +2 -3
- package/lib/field/CancelAlert/CancelAlert.tsx +98 -84
- package/lib/field/CancelAlert/index.tsx +1 -1
- package/lib/field/Checkbox/Checkbox.tsx +120 -63
- package/lib/field/Checkbox/config-ext.json +2 -3
- package/lib/field/Currency/Currency.tsx +25 -50
- package/lib/field/Currency/config-ext.json +2 -3
- package/lib/field/Currency/currency-utils.ts +9 -16
- package/lib/field/Date/Date.tsx +15 -11
- package/lib/field/Date/config-ext.json +2 -3
- package/lib/field/DateTime/DateTime.tsx +9 -9
- package/lib/field/DateTime/config-ext.json +1 -2
- package/lib/field/Decimal/Decimal.tsx +33 -44
- package/lib/field/Decimal/config-ext.json +1 -2
- package/lib/field/Decimal/index.tsx +1 -1
- package/lib/field/Dropdown/Dropdown.tsx +122 -31
- package/lib/field/Dropdown/config-ext.json +1 -2
- package/lib/field/Email/Email.tsx +11 -10
- package/lib/field/Email/config-ext.json +1 -2
- package/lib/field/Email/index.tsx +1 -1
- package/lib/field/Group/Group.tsx +39 -0
- package/lib/field/Group/config-ext.json +7 -0
- package/lib/field/Group/index.tsx +1 -0
- package/lib/field/Integer/Integer.tsx +8 -7
- package/lib/field/Integer/config-ext.json +1 -2
- package/lib/field/MultiSelect/Multiselect.tsx +244 -0
- package/lib/field/MultiSelect/index.tsx +1 -0
- package/lib/field/MultiSelect/utils.ts +230 -0
- package/lib/field/Percentage/Percentage.tsx +46 -41
- package/lib/field/Percentage/config-ext.json +1 -2
- package/lib/field/Phone/Phone.tsx +13 -12
- package/lib/field/Phone/index.tsx +1 -1
- package/lib/field/RadioButtons/RadioButtons.tsx +20 -18
- package/lib/field/RadioButtons/config-ext.json +1 -2
- package/lib/field/RichText/RichText.tsx +8 -7
- package/lib/field/ScalarList/ScalarList.tsx +3 -13
- package/lib/field/ScalarList/config-ext.json +1 -2
- package/lib/field/SemanticLink/SemanticLink.tsx +7 -7
- package/lib/field/SemanticLink/config-ext.json +1 -2
- package/lib/field/SemanticLink/utils.ts +8 -11
- package/lib/field/TextArea/TextArea.tsx +7 -6
- package/lib/field/TextArea/config-ext.json +1 -2
- package/lib/field/TextContent/TextContent.tsx +4 -6
- package/lib/field/TextContent/config-ext.json +1 -2
- package/lib/field/TextInput/TextInput.tsx +9 -7
- package/lib/field/TextInput/config-ext.json +1 -2
- package/lib/field/TextInput/index.tsx +1 -1
- package/lib/field/Time/Time.tsx +11 -11
- package/lib/field/Time/config-ext.json +1 -2
- package/lib/field/URL/URL.tsx +9 -8
- package/lib/field/URL/config-ext.json +1 -2
- package/lib/field/URL/index.tsx +1 -1
- package/lib/field/UserReference/UserReference.tsx +18 -16
- package/lib/field/UserReference/UserReferenceUtils.ts +2 -2
- package/lib/field/UserReference/config-ext.json +1 -2
- package/lib/helpers/attachmentHelpers.ts +13 -8
- package/lib/helpers/case-utils.tsx +4 -8
- package/lib/helpers/common-utils.ts +5 -1
- package/lib/helpers/data_page.ts +3 -7
- package/lib/helpers/date-format-utils.ts +3 -3
- package/lib/helpers/event-utils.ts +3 -3
- package/lib/helpers/field-group-utils.ts +1 -1
- package/lib/helpers/formatters/Boolean.ts +9 -26
- package/lib/helpers/formatters/Currency.ts +15 -21
- package/lib/helpers/formatters/CurrencyMap.ts +505 -501
- package/lib/helpers/formatters/Date.ts +20 -26
- package/lib/helpers/formatters/common.ts +1 -2
- package/lib/helpers/formatters/index.ts +26 -19
- package/lib/helpers/instructions-utils.ts +38 -0
- package/lib/helpers/reactContextHelpers.ts +2 -2
- package/lib/helpers/simpleTableHelpers.ts +59 -83
- package/lib/helpers/state-utils.tsx +5 -9
- package/lib/helpers/template-utils.ts +3 -6
- package/lib/helpers/utils.ts +5 -5
- package/lib/helpers/versionHelpers.ts +1 -4
- package/lib/infra/ActionButtons/ActionButtons.tsx +38 -29
- package/lib/infra/ActionButtons/index.tsx +1 -1
- package/lib/infra/Assignment/Assignment.tsx +99 -79
- package/lib/infra/Assignment/index.tsx +1 -1
- package/lib/infra/AssignmentCard/AssignmentCard.tsx +13 -16
- package/lib/infra/AssignmentCard/index.tsx +1 -1
- package/lib/infra/Containers/FlowContainer/FlowContainer.tsx +67 -213
- package/lib/infra/Containers/FlowContainer/helpers.ts +34 -45
- package/lib/infra/Containers/FlowContainer/index.tsx +1 -1
- package/lib/infra/Containers/ModalViewContainer/ListViewActionButtons/ListViewActionButtons.tsx +65 -0
- package/lib/infra/Containers/ModalViewContainer/ListViewActionButtons/index.tsx +1 -0
- package/lib/infra/Containers/ModalViewContainer/ModalViewContainer.tsx +227 -218
- package/lib/infra/Containers/ModalViewContainer/index.tsx +1 -1
- package/lib/infra/Containers/SimpleView/SimpleView.tsx +48 -0
- package/lib/infra/Containers/SimpleView/helper.ts +125 -0
- package/lib/infra/Containers/SimpleView/index.tsx +1 -0
- package/lib/infra/Containers/ViewContainer/ViewContainer.tsx +36 -46
- package/lib/infra/Containers/helpers.ts +6 -0
- package/lib/infra/DashboardFilter/DashboardFilter.tsx +21 -42
- package/lib/infra/DashboardFilter/filterUtils.tsx +12 -43
- package/lib/infra/DeferLoad/DeferLoad.tsx +22 -28
- package/lib/infra/DeferLoad/index.tsx +1 -1
- package/lib/infra/ErrorBoundary/ErrorBoundary.tsx +16 -30
- package/lib/infra/MultiStep/MultiStep.css +11 -15
- package/lib/infra/MultiStep/MultiStep.tsx +176 -212
- package/lib/infra/MultiStep/index.tsx +1 -1
- package/lib/infra/NavBar/NavBar.css +103 -105
- package/lib/infra/NavBar/NavBar.tsx +19 -31
- package/lib/infra/Reference/Reference.tsx +16 -18
- package/lib/infra/Region/Region.tsx +4 -6
- package/lib/infra/RootContainer/RootContainer.tsx +75 -111
- package/lib/infra/RootContainer/index.tsx +1 -1
- package/lib/infra/Stages/Stages.tsx +32 -39
- package/lib/infra/VerticalTabs/LeftAlignVerticalTabs/LeftAlignVerticalTabs.tsx +11 -11
- package/lib/infra/VerticalTabs/VerticalTabs/VerticalTabs.tsx +21 -28
- package/lib/infra/View/View.tsx +17 -21
- package/lib/template/AppShell/AppShell.css +22 -23
- package/lib/template/AppShell/AppShell.tsx +39 -74
- package/lib/template/BannerPage/BannerPage.tsx +12 -14
- package/lib/template/CaseSummary/CaseSummary.tsx +58 -18
- package/lib/template/CaseSummary/config-ext.json +1 -2
- package/lib/template/CaseView/CaseView.tsx +34 -63
- package/lib/template/CaseView/config-ext.json +1 -2
- package/lib/template/CaseViewActionsMenu/CaseViewActionsMenu.tsx +63 -19
- package/lib/template/Confirmation/Confirmation.tsx +12 -17
- package/lib/template/Confirmation/config-ext.json +1 -2
- package/lib/template/DataReference/DataReference.tsx +95 -121
- package/lib/template/DataReference/config-ext.json +1 -2
- package/lib/template/DefaultForm/DefaultForm.css +7 -3
- package/lib/template/DefaultForm/DefaultForm.tsx +13 -16
- package/lib/template/DefaultForm/config-ext.json +1 -2
- package/lib/template/Details/Details/Details.tsx +19 -22
- package/lib/template/Details/DetailsSubTabs/DetailsSubTabs.tsx +9 -13
- package/lib/template/Details/DetailsSubTabs/config-ext.json +1 -2
- package/lib/template/Details/DetailsThreeColumn/DetailsThreeColumn.tsx +19 -24
- package/lib/template/Details/DetailsThreeColumn/config-ext.json +1 -2
- package/lib/template/Details/DetailsTwoColumn/DetailsTwoColumn.tsx +19 -25
- package/lib/template/Details/DetailsTwoColumn/config-ext.json +1 -2
- package/lib/template/Details/DetailsTwoColumn/index.tsx +1 -1
- package/lib/template/Details/DynamicTabs/DynamicTabs.tsx +15 -14
- package/lib/template/FieldGroupTemplate/FieldGroupTemplate.tsx +15 -22
- package/lib/template/InlineDashboard/InlineDashboard.tsx +12 -14
- package/lib/template/InlineDashboardPage/InlineDashboardPage.tsx +12 -16
- package/lib/template/ListPage/ListPage.tsx +5 -10
- package/lib/template/ListPage/config-ext.json +1 -2
- package/lib/template/ListView/DefaultViewMeta.ts +1 -3
- package/lib/template/ListView/ListView.tsx +185 -175
- package/lib/template/ListView/config-ext.json +1 -2
- package/lib/template/ListView/hooks.ts +24 -26
- package/lib/template/ListView/utils.ts +51 -87
- package/lib/template/MultiReferenceReadOnly/MultiReferenceReadOnly.tsx +20 -20
- package/lib/template/NarrowWide/NarrowWide/NarrowWide.css +0 -2
- package/lib/template/NarrowWide/NarrowWide/NarrowWide.tsx +25 -38
- package/lib/template/NarrowWide/NarrowWideDetails/NarrowWideDetails.tsx +20 -25
- package/lib/template/NarrowWide/NarrowWideDetails/config-ext.json +1 -2
- package/lib/template/NarrowWide/NarrowWideForm/NarrowWideForm.css +0 -2
- package/lib/template/NarrowWide/NarrowWideForm/NarrowWideForm.tsx +14 -24
- package/lib/template/NarrowWide/NarrowWideForm/config-ext.json +1 -2
- package/lib/template/NarrowWide/NarrowWidePage/NarrowWidePage.tsx +9 -19
- package/lib/template/NarrowWide/NarrowWidePage/config-ext.json +1 -2
- package/lib/template/OneColumn/OneColumn/OneColumn.tsx +14 -15
- package/lib/template/OneColumn/OneColumn/config-ext.json +1 -2
- package/lib/template/OneColumn/OneColumnPage/OneColumnPage.tsx +3 -10
- package/lib/template/OneColumn/OneColumnPage/config-ext.json +1 -2
- package/lib/template/OneColumn/OneColumnTab/OneColumnTab.tsx +6 -10
- package/lib/template/OneColumn/OneColumnTab/config-ext.json +1 -2
- package/lib/template/PromotedFilters/PromotedFilters.css +1 -1
- package/lib/template/PromotedFilters/PromotedFilters.tsx +32 -28
- package/lib/template/SimpleTable/SimpleTable/SimpleTable.tsx +37 -33
- package/lib/template/SimpleTable/SimpleTable/config-ext.json +1 -2
- package/lib/template/SimpleTable/SimpleTableManual/SimpleTableManual.tsx +187 -121
- package/lib/template/SimpleTable/SimpleTableSelect/SimpleTableSelect.tsx +24 -25
- package/lib/template/SingleReferenceReadOnly/SingleReferenceReadOnly.tsx +30 -30
- package/lib/template/SubTabs/SubTabs.tsx +22 -40
- package/lib/template/SubTabs/config-ext.json +1 -2
- package/lib/template/SubTabs/tabUtils.ts +2 -5
- package/lib/template/TwoColumn/TwoColumn/TwoColumn.css +0 -1
- package/lib/template/TwoColumn/TwoColumn/TwoColumn.tsx +30 -28
- package/lib/template/TwoColumn/TwoColumn/config-ext.json +1 -2
- package/lib/template/TwoColumn/TwoColumnPage/TwoColumnPage.tsx +3 -10
- package/lib/template/TwoColumn/TwoColumnPage/config-ext.json +1 -2
- package/lib/template/TwoColumn/TwoColumnTab/TwoColumnTab.tsx +30 -28
- package/lib/template/TwoColumn/TwoColumnTab/config-ext.json +1 -2
- package/lib/template/WideNarrow/WideNarrow/WideNarrow.css +0 -2
- package/lib/template/WideNarrow/WideNarrow/WideNarrow.tsx +22 -34
- package/lib/template/WideNarrow/WideNarrowDetails/WideNarrowDetails.tsx +24 -28
- package/lib/template/WideNarrow/WideNarrowDetails/config-ext.json +1 -2
- package/lib/template/WideNarrow/WideNarrowForm/WideNarrowForm.css +0 -2
- package/lib/template/WideNarrow/WideNarrowForm/WideNarrowForm.tsx +13 -21
- package/lib/template/WideNarrow/WideNarrowForm/config-ext.json +1 -2
- package/lib/template/WideNarrow/WideNarrowPage/WideNarrowPage.tsx +8 -16
- package/lib/template/WideNarrow/WideNarrowPage/config-ext.json +1 -2
- package/lib/template/WideNarrow/WideNarrowPage/index.tsx +1 -1
- package/lib/template/WssNavBar/WssNavBar.tsx +18 -21
- package/lib/widget/AppAnnouncement/AppAnnouncement.tsx +29 -28
- package/lib/widget/AppAnnouncement/config-ext.json +1 -2
- package/lib/widget/Attachment/Attachment.css +60 -1
- package/lib/widget/Attachment/Attachment.tsx +378 -405
- package/lib/widget/Attachment/index.tsx +1 -1
- package/lib/widget/CaseHistory/CaseHistory.tsx +64 -66
- package/lib/widget/CaseHistory/config-ext.json +1 -2
- package/lib/widget/CaseHistory/index.tsx +1 -1
- package/lib/widget/FileUtility/ActionButtonsForFileUtil/ActionButtonsForFileUtil.tsx +16 -18
- package/lib/widget/FileUtility/FileUtility/FileUtility.css +2 -2
- package/lib/widget/FileUtility/FileUtility/FileUtility.tsx +310 -246
- package/lib/widget/FileUtility/FileUtility/config-ext.json +1 -2
- package/lib/widget/Followers/Followers.tsx +23 -20
- package/lib/widget/Followers/config-ext.json +1 -2
- package/lib/widget/QuickCreate/QuickCreate.tsx +68 -42
- package/lib/widget/SummaryItem/SummaryItem.css +9 -9
- package/lib/widget/SummaryItem/SummaryItem.tsx +58 -58
- package/lib/widget/SummaryItem/index.tsx +1 -1
- package/lib/widget/SummaryList/SummaryList.tsx +7 -10
- package/lib/widget/ToDo/ToDo.css +4 -4
- package/lib/widget/ToDo/ToDo.tsx +52 -53
- package/lib/widget/ToDo/config-ext.json +1 -2
- package/package.json +5 -2
- package/lib/helpers/auth.js +0 -834
- package/lib/helpers/authManager.ts +0 -933
- package/lib/helpers/config_access.js +0 -186
|
@@ -1,225 +1,189 @@
|
|
|
1
|
-
import React from
|
|
2
|
-
import { getComponentFromMap } from '@pega/react-sdk-components/lib/bridge/helpers/sdk_component_map';
|
|
3
|
-
import './MultiStep.css';
|
|
4
|
-
|
|
5
|
-
// import { useConstellationContext } from "../../bridge/Context/StoreContext";
|
|
1
|
+
import React, { PropsWithChildren } from 'react';
|
|
6
2
|
|
|
7
|
-
import
|
|
3
|
+
import { getComponentFromMap } from '@pega/react-sdk-components/lib/bridge/helpers/sdk_component_map';
|
|
4
|
+
import { PConnProps } from '@pega/react-sdk-components/lib/types/PConnProps';
|
|
8
5
|
|
|
6
|
+
import './MultiStep.css';
|
|
9
7
|
|
|
10
8
|
interface MultiStepProps extends PConnProps {
|
|
11
9
|
// If any, enter additional props that only exist on this component
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
arNavigationSteps: Array<any>,
|
|
18
|
-
// eslint-disable-next-line react/no-unused-prop-types
|
|
19
|
-
arCurrentStepIndicies?: Array<any>
|
|
10
|
+
itemKey: string;
|
|
11
|
+
actionButtons: any[];
|
|
12
|
+
onButtonPress: any;
|
|
13
|
+
bIsVertical: boolean;
|
|
14
|
+
arNavigationSteps: any[];
|
|
20
15
|
}
|
|
21
16
|
|
|
17
|
+
export default function MultiStep(props: PropsWithChildren<MultiStepProps>) {
|
|
18
|
+
// Get emitted components from map (so we can get any override that may exist)
|
|
19
|
+
const AssignmentCard = getComponentFromMap('AssignmentCard');
|
|
22
20
|
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
const AssignmentCard = getComponentFromMap("AssignmentCard");
|
|
26
|
-
|
|
27
|
-
const { getPConnect, children, itemKey = '', actionButtons, onButtonPress} = props;
|
|
28
|
-
const { bIsVertical, arNavigationSteps } = props;
|
|
29
|
-
|
|
30
|
-
// const svgCurrent = Utils.getImageSrc("circle-solid", Utils.getSDKStaticConentUrl());
|
|
31
|
-
// const svgNotCurrent = Utils.getImageSrc("circle-solid", Utils.getSDKStaticConentUrl());
|
|
32
|
-
|
|
33
|
-
function _getVIconClass(status): string {
|
|
34
|
-
if (status === "current") {
|
|
35
|
-
return "psdk-vertical-step-icon-selected";
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
return "psdk-vertical-step-icon";
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
function _getVLabelClass(status): string {
|
|
42
|
-
if (status === "current") {
|
|
43
|
-
return "psdk-vertical-step-label-selected";
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
return "psdk-vertical-step-label";
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
function _getVBodyClass(index: number): string {
|
|
50
|
-
if (index < arNavigationSteps.length - 1) {
|
|
51
|
-
return "psdk-vertical-step-body psdk-vertical-step-line";
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
return "psdk-vertical-step-body";
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
function _getHIconClass(status): string {
|
|
58
|
-
if (status === "current") {
|
|
59
|
-
return "psdk-horizontal-step-icon-selected";
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
return "psdk-horizontal-step-icon";
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
function _getHLabelClass(status): string {
|
|
66
|
-
if (status === "current") {
|
|
67
|
-
return "psdk-horizontal-step-label-selected";
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
return "psdk-horizontal-step-label";
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
function _showHLine(index: number): boolean {
|
|
74
|
-
// eslint-disable-next-line sonarjs/prefer-single-boolean-return
|
|
75
|
-
if (index < arNavigationSteps.length - 1) {
|
|
76
|
-
return true;
|
|
77
|
-
}
|
|
78
|
-
|
|
79
|
-
return false;
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
function buttonPress(sAction: string, sButtonType: string) {
|
|
83
|
-
onButtonPress(sAction, sButtonType);
|
|
84
|
-
}
|
|
85
|
-
|
|
86
|
-
return (
|
|
87
|
-
<React.Fragment>
|
|
88
|
-
<div>
|
|
89
|
-
{bIsVertical ?
|
|
90
|
-
<div className="psdk-vertical-stepper">
|
|
91
|
-
{arNavigationSteps.map((mainStep, index) => {
|
|
92
|
-
return (
|
|
93
|
-
<React.Fragment key={mainStep.actionID}>
|
|
94
|
-
<div className="psdk-vertical-step">
|
|
95
|
-
<div className="psdk-vertical-step-header">
|
|
96
|
-
<div className={ _getVIconClass(mainStep.visited_status)}>
|
|
97
|
-
<div className="psdk-vertical-step-icon-content">
|
|
98
|
-
<span>{index + 1}</span>
|
|
99
|
-
</div>
|
|
100
|
-
</div>
|
|
101
|
-
<div className={ _getVLabelClass(mainStep.visited_status)}>
|
|
102
|
-
{mainStep.name}
|
|
103
|
-
</div>
|
|
104
|
-
</div>
|
|
105
|
-
<div className={ _getVBodyClass(index)}>
|
|
106
|
-
{mainStep?.steps &&
|
|
107
|
-
<React.Fragment>
|
|
108
|
-
<ul style={{paddingInlineStart: "0rem", marginLeft: "-7px"}}>
|
|
109
|
-
{mainStep.steps.forEach((subStep) => {
|
|
110
|
-
<li className="psdk-sub-step-list">
|
|
111
|
-
<div style={{display: "inline-flex"}}>
|
|
112
|
-
{subStep.visited_status === 'current' &&
|
|
113
|
-
<img className="psdk-current-svg-icon" src="{svgCurrent}" />
|
|
114
|
-
}
|
|
115
|
-
{subStep.visited_status !== 'current' &&
|
|
116
|
-
<img className="psdk-not-current-svg-icon" src="{svgNotCurrent}" />
|
|
117
|
-
}
|
|
118
|
-
{subStep.visited_status === 'current' &&
|
|
119
|
-
<label className="psdk-sub-step-current">{subStep.name}</label>
|
|
120
|
-
}
|
|
121
|
-
{subStep.visited_status !== 'current' &&
|
|
122
|
-
<label className="psdk-sub-step-not-current">{subStep.name}</label>
|
|
123
|
-
}
|
|
124
|
-
</div>
|
|
125
|
-
{subStep.visited_status === 'current' &&
|
|
126
|
-
<div>
|
|
127
|
-
<AssignmentCard getPConnect={getPConnect} itemKey={itemKey} actionButtons={actionButtons} onButtonPress={buttonPress} >
|
|
128
|
-
{children}
|
|
129
|
-
</AssignmentCard>
|
|
130
|
-
</div>
|
|
131
|
-
}
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
</li>
|
|
135
|
-
})}
|
|
136
|
-
|
|
137
|
-
</ul>
|
|
138
|
-
</React.Fragment>
|
|
139
|
-
}
|
|
140
|
-
{!mainStep?.steps && mainStep.visited_status === 'current' &&
|
|
141
|
-
<AssignmentCard getPConnect={getPConnect} itemKey={itemKey} actionButtons={actionButtons} onButtonPress={buttonPress} >
|
|
142
|
-
{children}
|
|
143
|
-
</AssignmentCard>
|
|
144
|
-
}
|
|
145
|
-
</div>
|
|
146
|
-
</div>
|
|
147
|
-
</React.Fragment>
|
|
148
|
-
)})}
|
|
149
|
-
</div>
|
|
21
|
+
const { getPConnect, children, itemKey = '', actionButtons, onButtonPress } = props;
|
|
22
|
+
const { bIsVertical, arNavigationSteps } = props;
|
|
150
23
|
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
<div className="psdk-horizontal-stepper-header-container">
|
|
154
|
-
{arNavigationSteps.map((mainStep, index) => {
|
|
155
|
-
return (
|
|
156
|
-
<React.Fragment key={mainStep.actionID}>
|
|
157
|
-
<div className="psdk-horizontal-step-header">
|
|
158
|
-
<div className={ _getHIconClass(mainStep.visited_status)}>
|
|
159
|
-
<div className="psdk-horizontal-step-icon-content">
|
|
160
|
-
<span>{index + 1}</span>
|
|
161
|
-
</div>
|
|
162
|
-
</div>
|
|
163
|
-
<div className={ _getHLabelClass(mainStep.visited_status)}>
|
|
164
|
-
<div className="psdk-horizontal-step-text-label">
|
|
165
|
-
{mainStep.name}
|
|
166
|
-
</div>
|
|
167
|
-
</div>
|
|
168
|
-
</div>
|
|
169
|
-
{ _showHLine(index) &&
|
|
170
|
-
<div className="psdk-horizontal-step-line"></div>
|
|
171
|
-
}
|
|
172
|
-
</React.Fragment>
|
|
173
|
-
)})}
|
|
174
|
-
</div>
|
|
175
|
-
{arNavigationSteps.map((mainStep) => {
|
|
176
|
-
return (
|
|
177
|
-
<React.Fragment key={mainStep.actionID}>
|
|
178
|
-
{mainStep.steps &&
|
|
179
|
-
<React.Fragment>
|
|
180
|
-
<ul style={{paddingInlineStart: "0rem", marginLeft: "35px"}}>
|
|
181
|
-
{mainStep.steps.map((subStep) => (
|
|
182
|
-
<React.Fragment>
|
|
183
|
-
<li className="psdk-sub-step-list">
|
|
184
|
-
<div style={{display: "inline-flex"}}>
|
|
185
|
-
{subStep.visited_status === 'current' &&
|
|
186
|
-
<img className="psdk-current-svg-icon" src="{svgCurrent}" />
|
|
187
|
-
}
|
|
188
|
-
{subStep.visited_status !== 'current' &&
|
|
189
|
-
<img className="psdk-not-current-svg-icon" src="{svgNotCurrent}" />
|
|
190
|
-
}
|
|
191
|
-
{subStep.visited_status === 'current' &&
|
|
192
|
-
<label className="psdk-sub-step-current">{subStep.name}</label>
|
|
193
|
-
}
|
|
194
|
-
{subStep.visited_status !== 'current' &&
|
|
195
|
-
<label className="psdk-sub-step-not-current">{subStep.name}</label>
|
|
196
|
-
}
|
|
197
|
-
</div>
|
|
198
|
-
{subStep.visited_status === 'current' &&
|
|
199
|
-
<AssignmentCard getPConnect={getPConnect} itemKey={itemKey} actionButtons={actionButtons} onButtonPress={buttonPress} >
|
|
200
|
-
{children}
|
|
201
|
-
</AssignmentCard>
|
|
202
|
-
}
|
|
203
|
-
</li>
|
|
204
|
-
</React.Fragment>
|
|
205
|
-
))}
|
|
206
|
-
|
|
207
|
-
</ul>
|
|
208
|
-
</React.Fragment>
|
|
209
|
-
}
|
|
210
|
-
{ !mainStep?.steps && mainStep.visited_status === 'current' &&
|
|
211
|
-
<AssignmentCard getPConnect={getPConnect} itemKey={itemKey} actionButtons={actionButtons} onButtonPress={buttonPress} >
|
|
212
|
-
{children}
|
|
213
|
-
</AssignmentCard>
|
|
214
|
-
}
|
|
215
|
-
</React.Fragment>
|
|
216
|
-
)})}
|
|
217
|
-
</div>
|
|
218
|
-
}
|
|
24
|
+
// const svgCurrent = Utils.getImageSrc("circle-solid", Utils.getSDKStaticConentUrl());
|
|
25
|
+
// const svgNotCurrent = Utils.getImageSrc("circle-solid", Utils.getSDKStaticConentUrl());
|
|
219
26
|
|
|
220
|
-
|
|
27
|
+
function _getVIconClass(status): string {
|
|
28
|
+
if (status === 'current') {
|
|
29
|
+
return 'psdk-vertical-step-icon-selected';
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
return 'psdk-vertical-step-icon';
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
function _getVLabelClass(status): string {
|
|
36
|
+
if (status === 'current') {
|
|
37
|
+
return 'psdk-vertical-step-label-selected';
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
return 'psdk-vertical-step-label';
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
function _getVBodyClass(index: number): string {
|
|
44
|
+
if (index < arNavigationSteps.length - 1) {
|
|
45
|
+
return 'psdk-vertical-step-body psdk-vertical-step-line';
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
return 'psdk-vertical-step-body';
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
function _getHIconClass(status): string {
|
|
52
|
+
if (status === 'current') {
|
|
53
|
+
return 'psdk-horizontal-step-icon-selected';
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
return 'psdk-horizontal-step-icon';
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
function _getHLabelClass(status): string {
|
|
60
|
+
if (status === 'current') {
|
|
61
|
+
return 'psdk-horizontal-step-label-selected';
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
return 'psdk-horizontal-step-label';
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
function _showHLine(index: number): boolean {
|
|
68
|
+
// eslint-disable-next-line sonarjs/prefer-single-boolean-return
|
|
69
|
+
if (index < arNavigationSteps.length - 1) {
|
|
70
|
+
return true;
|
|
71
|
+
}
|
|
221
72
|
|
|
222
|
-
|
|
73
|
+
return false;
|
|
74
|
+
}
|
|
223
75
|
|
|
224
|
-
|
|
76
|
+
function buttonPress(sAction: string, sButtonType: string) {
|
|
77
|
+
onButtonPress(sAction, sButtonType);
|
|
225
78
|
}
|
|
79
|
+
|
|
80
|
+
return (
|
|
81
|
+
<div>
|
|
82
|
+
{bIsVertical ? (
|
|
83
|
+
<div className='psdk-vertical-stepper'>
|
|
84
|
+
{arNavigationSteps.map((mainStep, index) => {
|
|
85
|
+
return (
|
|
86
|
+
<React.Fragment key={mainStep.actionID}>
|
|
87
|
+
<div className='psdk-vertical-step'>
|
|
88
|
+
<div className='psdk-vertical-step-header'>
|
|
89
|
+
<div className={_getVIconClass(mainStep.visited_status)}>
|
|
90
|
+
<div className='psdk-vertical-step-icon-content'>
|
|
91
|
+
<span>{index + 1}</span>
|
|
92
|
+
</div>
|
|
93
|
+
</div>
|
|
94
|
+
<div className={_getVLabelClass(mainStep.visited_status)}>{mainStep.name}</div>
|
|
95
|
+
</div>
|
|
96
|
+
<div className={_getVBodyClass(index)}>
|
|
97
|
+
{mainStep?.steps && (
|
|
98
|
+
<ul
|
|
99
|
+
style={{
|
|
100
|
+
paddingInlineStart: '0rem',
|
|
101
|
+
marginLeft: '-7px'
|
|
102
|
+
}}
|
|
103
|
+
>
|
|
104
|
+
{mainStep.steps.forEach(subStep => {
|
|
105
|
+
<li className='psdk-sub-step-list'>
|
|
106
|
+
<div style={{ display: 'inline-flex' }}>
|
|
107
|
+
{subStep.visited_status === 'current' && <img className='psdk-current-svg-icon' src='{svgCurrent}' />}
|
|
108
|
+
{subStep.visited_status !== 'current' && <img className='psdk-not-current-svg-icon' src='{svgNotCurrent}' />}
|
|
109
|
+
{subStep.visited_status === 'current' && <label className='psdk-sub-step-current'>{subStep.name}</label>}
|
|
110
|
+
{subStep.visited_status !== 'current' && <label className='psdk-sub-step-not-current'>{subStep.name}</label>}
|
|
111
|
+
</div>
|
|
112
|
+
{subStep.visited_status === 'current' && (
|
|
113
|
+
<div>
|
|
114
|
+
<AssignmentCard getPConnect={getPConnect} itemKey={itemKey} actionButtons={actionButtons} onButtonPress={buttonPress}>
|
|
115
|
+
{children}
|
|
116
|
+
</AssignmentCard>
|
|
117
|
+
</div>
|
|
118
|
+
)}
|
|
119
|
+
</li>;
|
|
120
|
+
})}
|
|
121
|
+
</ul>
|
|
122
|
+
)}
|
|
123
|
+
{!mainStep?.steps && mainStep.visited_status === 'current' && (
|
|
124
|
+
<AssignmentCard getPConnect={getPConnect} itemKey={itemKey} actionButtons={actionButtons} onButtonPress={buttonPress}>
|
|
125
|
+
{children}
|
|
126
|
+
</AssignmentCard>
|
|
127
|
+
)}
|
|
128
|
+
</div>
|
|
129
|
+
</div>
|
|
130
|
+
</React.Fragment>
|
|
131
|
+
);
|
|
132
|
+
})}
|
|
133
|
+
</div>
|
|
134
|
+
) : (
|
|
135
|
+
<div className='psdk-horizontal-stepper'>
|
|
136
|
+
<div className='psdk-horizontal-stepper-header-container'>
|
|
137
|
+
{arNavigationSteps.map((mainStep, index) => {
|
|
138
|
+
return (
|
|
139
|
+
<React.Fragment key={mainStep.actionID}>
|
|
140
|
+
<div className='psdk-horizontal-step-header'>
|
|
141
|
+
<div className={_getHIconClass(mainStep.visited_status)}>
|
|
142
|
+
<div className='psdk-horizontal-step-icon-content'>
|
|
143
|
+
<span>{index + 1}</span>
|
|
144
|
+
</div>
|
|
145
|
+
</div>
|
|
146
|
+
<div className={_getHLabelClass(mainStep.visited_status)}>
|
|
147
|
+
<div className='psdk-horizontal-step-text-label'>{mainStep.name}</div>
|
|
148
|
+
</div>
|
|
149
|
+
</div>
|
|
150
|
+
{_showHLine(index) && <div className='psdk-horizontal-step-line' />}
|
|
151
|
+
</React.Fragment>
|
|
152
|
+
);
|
|
153
|
+
})}
|
|
154
|
+
</div>
|
|
155
|
+
{arNavigationSteps.map(mainStep => {
|
|
156
|
+
return (
|
|
157
|
+
<React.Fragment key={mainStep.actionID}>
|
|
158
|
+
{mainStep.steps && (
|
|
159
|
+
<ul style={{ paddingInlineStart: '0rem', marginLeft: '35px' }}>
|
|
160
|
+
{mainStep.steps.map(subStep => (
|
|
161
|
+
<li className='psdk-sub-step-list'>
|
|
162
|
+
<div style={{ display: 'inline-flex' }}>
|
|
163
|
+
{subStep.visited_status === 'current' && <img className='psdk-current-svg-icon' src='{svgCurrent}' />}
|
|
164
|
+
{subStep.visited_status !== 'current' && <img className='psdk-not-current-svg-icon' src='{svgNotCurrent}' />}
|
|
165
|
+
{subStep.visited_status === 'current' && <label className='psdk-sub-step-current'>{subStep.name}</label>}
|
|
166
|
+
{subStep.visited_status !== 'current' && <label className='psdk-sub-step-not-current'>{subStep.name}</label>}
|
|
167
|
+
</div>
|
|
168
|
+
{subStep.visited_status === 'current' && (
|
|
169
|
+
<AssignmentCard getPConnect={getPConnect} itemKey={itemKey} actionButtons={actionButtons} onButtonPress={buttonPress}>
|
|
170
|
+
{children}
|
|
171
|
+
</AssignmentCard>
|
|
172
|
+
)}
|
|
173
|
+
</li>
|
|
174
|
+
))}
|
|
175
|
+
</ul>
|
|
176
|
+
)}
|
|
177
|
+
{!mainStep?.steps && mainStep.visited_status === 'current' && (
|
|
178
|
+
<AssignmentCard getPConnect={getPConnect} itemKey={itemKey} actionButtons={actionButtons} onButtonPress={buttonPress}>
|
|
179
|
+
{children}
|
|
180
|
+
</AssignmentCard>
|
|
181
|
+
)}
|
|
182
|
+
</React.Fragment>
|
|
183
|
+
);
|
|
184
|
+
})}
|
|
185
|
+
</div>
|
|
186
|
+
)}
|
|
187
|
+
</div>
|
|
188
|
+
);
|
|
189
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default } from './MultiStep';
|
|
1
|
+
export { default } from './MultiStep';
|
|
@@ -1,170 +1,168 @@
|
|
|
1
1
|
.psdk-nav-divider {
|
|
2
|
-
|
|
3
|
-
|
|
2
|
+
border-bottom: 0.0625rem solid var(--app-nav-color);
|
|
3
|
+
width: 100%;
|
|
4
4
|
}
|
|
5
5
|
|
|
6
6
|
.psdk-nav-header {
|
|
7
|
-
|
|
8
|
-
|
|
7
|
+
display: flex;
|
|
8
|
+
padding-top: 0.625rem;
|
|
9
9
|
}
|
|
10
10
|
|
|
11
11
|
.psdk-nav-logo {
|
|
12
|
-
|
|
13
|
-
|
|
12
|
+
/* override vertical-align coming in from Bootstrap "reboot" */
|
|
13
|
+
vertical-align: baseline;
|
|
14
14
|
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
15
|
+
width: 3.5rem;
|
|
16
|
+
margin-left: 0.5rem;
|
|
17
|
+
margin-right: 0.5rem;
|
|
18
|
+
margin-top: 0.25rem;
|
|
19
|
+
margin-bottom: 0.25rem;
|
|
20
20
|
|
|
21
|
-
|
|
22
|
-
|
|
21
|
+
padding-left: 0.5rem;
|
|
22
|
+
padding-right: 0.5rem;
|
|
23
23
|
}
|
|
24
24
|
|
|
25
25
|
/* background color white */
|
|
26
26
|
/* filter: var(--app-white-color-filter); */
|
|
27
27
|
.psdk-nav-svg-icon {
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
28
|
+
width: 2.6rem;
|
|
29
|
+
/* padding-right: 0.625rem; */
|
|
30
|
+
-webkit-filter: invert(0.75); /* safari 6.0 - 9.0 */
|
|
31
|
+
filter: invert(0.75);
|
|
32
32
|
}
|
|
33
33
|
|
|
34
34
|
.psdk-nav-portal-info {
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
35
|
+
margin-top: 0.15rem;
|
|
36
|
+
margin-bottom: 0.25rem;
|
|
37
|
+
padding-left: 0.15rem;
|
|
38
|
+
padding-right: 0.5rem;
|
|
40
39
|
}
|
|
41
40
|
|
|
42
41
|
.psdk-nav-portal-name {
|
|
43
|
-
|
|
42
|
+
font-size: 1rem;
|
|
44
43
|
}
|
|
45
44
|
|
|
46
45
|
.psdk-nav-portal-app {
|
|
47
|
-
|
|
46
|
+
font-size: 1rem;
|
|
48
47
|
}
|
|
49
48
|
|
|
50
49
|
.psdk-appshell-nav {
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
50
|
+
top: 0px; /* JEA */
|
|
51
|
+
position: relative; /* JEA was fixed */
|
|
52
|
+
z-index: 3;
|
|
53
|
+
display: flex;
|
|
54
|
+
flex-direction: column;
|
|
55
|
+
justify-content: flex-start;
|
|
56
|
+
background: var(--app-nav-bg);
|
|
57
|
+
width: var(--app-nav-width);
|
|
58
|
+
height: 100%;
|
|
59
|
+
color: var(--app-nav-color);
|
|
60
|
+
/* overflow: hidden; */
|
|
61
|
+
white-space: nowrap;
|
|
62
|
+
transition: width var(--transition-medium) var(--natural-ease);
|
|
63
|
+
will-change: width;
|
|
66
64
|
}
|
|
67
65
|
|
|
68
66
|
.psdk-appshell-nav:hover {
|
|
69
|
-
|
|
67
|
+
width: var(--app-nav-width-expanded);
|
|
70
68
|
}
|
|
71
69
|
|
|
72
70
|
.psdk-appshell-topnav {
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
71
|
+
display: flex;
|
|
72
|
+
flex-direction: column;
|
|
73
|
+
justify-content: flex-start;
|
|
74
|
+
background: var(--app-nav-bg);
|
|
75
|
+
width: var(--app-nav-width);
|
|
76
|
+
height: 15%;
|
|
77
|
+
color: var(--app-nav-color);
|
|
78
|
+
/* overflow: hidden; */
|
|
79
|
+
white-space: nowrap;
|
|
80
|
+
transition: width var(--transition-medium) var(--natural-ease);
|
|
81
|
+
will-change: width;
|
|
84
82
|
}
|
|
85
83
|
|
|
86
84
|
.psdk-appshell-middlenav {
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
85
|
+
display: flex;
|
|
86
|
+
flex-direction: column;
|
|
87
|
+
justify-content: space-between;
|
|
88
|
+
background: var(--app-nav-bg);
|
|
89
|
+
width: var(--app-nav-width);
|
|
90
|
+
height: 50%;
|
|
91
|
+
color: var(--app-nav-color);
|
|
92
|
+
/* overflow: hidden; */
|
|
93
|
+
white-space: nowrap;
|
|
94
|
+
transition: width var(--transition-medium) var(--natural-ease);
|
|
95
|
+
will-change: width;
|
|
98
96
|
}
|
|
99
97
|
|
|
100
98
|
.psdk-appshell-bottom {
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
99
|
+
/* to make NavBar logout button stay fixed to bottom of window */
|
|
100
|
+
/* position: fixed; */
|
|
101
|
+
bottom: 0px;
|
|
102
|
+
background: var(--app-nav-bg);
|
|
103
|
+
width: var(--app-nav-width); /* inherit; */
|
|
104
|
+
border-top: 0.0625rem solid var(--app-nav-color);
|
|
107
105
|
}
|
|
108
106
|
|
|
109
107
|
/* Added for nav bar buttons to be like middlenav but with no additional flex direction and left justify */
|
|
110
108
|
.psdk-appshell-buttonnav {
|
|
111
|
-
|
|
109
|
+
/* display: flex;
|
|
112
110
|
flex-direction: row; */
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
111
|
+
border: none;
|
|
112
|
+
justify-content: left;
|
|
113
|
+
background: var(--app-nav-bg);
|
|
114
|
+
width: var(--app-nav-width);
|
|
115
|
+
height: 50%;
|
|
116
|
+
color: var(--app-nav-color);
|
|
117
|
+
/* overflow: hidden; */
|
|
118
|
+
white-space: nowrap;
|
|
119
|
+
transition: width var(--transition-medium) var(--natural-ease);
|
|
120
|
+
will-change: width;
|
|
123
121
|
}
|
|
124
122
|
|
|
125
123
|
.psdk-nav-ul-middle {
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
124
|
+
display: block;
|
|
125
|
+
list-style-type: none;
|
|
126
|
+
margin: 0rem;
|
|
127
|
+
padding-inline-start: 30px;
|
|
130
128
|
}
|
|
131
129
|
|
|
132
130
|
.psdk-nav-li-middle {
|
|
133
|
-
|
|
134
|
-
|
|
131
|
+
box-sizing: border-box;
|
|
132
|
+
text-align: left;
|
|
135
133
|
}
|
|
136
134
|
|
|
137
135
|
.psdk-icon {
|
|
138
|
-
|
|
139
|
-
|
|
136
|
+
padding: 0rem 0.125rem;
|
|
137
|
+
min-width: unset;
|
|
140
138
|
}
|
|
141
139
|
|
|
142
140
|
.psdk-nav-button-span {
|
|
143
|
-
|
|
141
|
+
padding: 1rem;
|
|
144
142
|
}
|
|
145
143
|
|
|
146
144
|
.psdk-nav-oper-avatar {
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
145
|
+
margin: 0rem;
|
|
146
|
+
padding: 0rem;
|
|
147
|
+
min-width: 2.5rem;
|
|
148
|
+
min-height: 2.5rem;
|
|
149
|
+
max-width: 2.5rem;
|
|
150
|
+
max-height: 2.5rem;
|
|
151
|
+
border-radius: 50%;
|
|
152
|
+
justify-content: center;
|
|
153
|
+
align-items: center;
|
|
154
|
+
text-align: center;
|
|
155
|
+
display: inline-flex;
|
|
156
|
+
background: var(--app-neutral-color);
|
|
157
|
+
color: white;
|
|
158
|
+
font-weight: normal;
|
|
159
|
+
font-size: 1rem;
|
|
162
160
|
}
|
|
163
161
|
|
|
164
162
|
.marginTopAuto {
|
|
165
|
-
|
|
163
|
+
margin-top: auto !important;
|
|
166
164
|
}
|
|
167
165
|
|
|
168
166
|
.scrollable {
|
|
169
|
-
|
|
167
|
+
overflow-y: scroll !important;
|
|
170
168
|
}
|