@paro.io/expert-shared-components 1.13.12 → 1.13.13
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.
|
@@ -42,6 +42,6 @@ const EngagementHeader = ({ clientName, expertName, expertTitle, startDate, stat
|
|
|
42
42
|
expertTitle,
|
|
43
43
|
" \u2022 Started ",
|
|
44
44
|
formattedDate)),
|
|
45
|
-
react_1.default.createElement(EscalationIssueCard_1.CustomTag, { label: STATUS_LABELS[status]
|
|
45
|
+
react_1.default.createElement(EscalationIssueCard_1.CustomTag, { label: STATUS_LABELS[status], customColor: `bg-${STATUS_COLORS[status]} border-${STATUS_COLORS[status]}` })))));
|
|
46
46
|
};
|
|
47
47
|
exports.EngagementHeader = EngagementHeader;
|
|
@@ -89,8 +89,8 @@ const ProjectIntelligence = ({ checkIfOpportunityInsightsExistData, opportunityI
|
|
|
89
89
|
}));
|
|
90
90
|
};
|
|
91
91
|
return (react_1.default.createElement(react_1.default.Fragment, null,
|
|
92
|
-
react_1.default.createElement("div", { className: "w-full bg-
|
|
93
|
-
react_1.default.createElement("
|
|
92
|
+
react_1.default.createElement("div", { className: "w-full bg-gray-100 py-6 px-4 rounded-lg shadow mb-4" },
|
|
93
|
+
react_1.default.createElement("div", { className: "text-2xl font-bold" }, (opportunityInsights === null || opportunityInsights === void 0 ? void 0 : opportunityInsights.opportunityName) || 'Client Engagement Dashboard'),
|
|
94
94
|
react_1.default.createElement("p", { className: "text-gray-600 mt-1" },
|
|
95
95
|
"Engagement dashboard for ",
|
|
96
96
|
(opportunityInsights === null || opportunityInsights === void 0 ? void 0 : opportunityInsights.opportunityName) || 'this client')),
|