@paro.io/expert-shared-components 1.14.34 → 1.14.35
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.
|
@@ -212,13 +212,20 @@ const DiscussionSection = ({ disputeId, escalationNumber, currentUser, messages,
|
|
|
212
212
|
react_1.default.createElement("label", { className: "flex items-center space-x-2 cursor-pointer" },
|
|
213
213
|
react_1.default.createElement("input", { type: "radio", checked: visibility === 'ALL', onChange: () => setVisibility('ALL'), className: "form-radio text-[#248384]" }),
|
|
214
214
|
react_1.default.createElement("span", { className: "text-sm text-[#333333]" }, "All")))),
|
|
215
|
-
!internalEscalationTo && clientEscalationTo === 'paro' && (react_1.default.createElement(
|
|
216
|
-
react_1.default.createElement("
|
|
217
|
-
|
|
215
|
+
!internalEscalationTo && clientEscalationTo === 'paro' && (react_1.default.createElement(react_1.default.Fragment, null,
|
|
216
|
+
react_1.default.createElement("label", { className: "flex items-center space-x-2 cursor-pointer" },
|
|
217
|
+
react_1.default.createElement("input", { type: "radio", checked: true, readOnly: true, className: "form-radio text-[#248384]" }),
|
|
218
|
+
react_1.default.createElement("span", { className: "text-sm text-[#333333]" }, "Internal Only")),
|
|
219
|
+
react_1.default.createElement("label", { className: "flex items-center space-x-2 cursor-pointer" },
|
|
220
|
+
react_1.default.createElement("input", { type: "radio", checked: visibility === 'CLIENT_INTERNAL_ONLY', onChange: () => setVisibility('CLIENT_INTERNAL_ONLY'), className: "form-radio text-[#248384]" }),
|
|
221
|
+
react_1.default.createElement("span", { className: "text-sm text-[#333333]" }, "Client Only")))),
|
|
218
222
|
!internalEscalationTo && clientEscalationTo === 'both' && (react_1.default.createElement(react_1.default.Fragment, null,
|
|
219
223
|
react_1.default.createElement("label", { className: "flex items-center space-x-2 cursor-pointer" },
|
|
220
224
|
react_1.default.createElement("input", { type: "radio", checked: visibility === 'EXPERT_INTERNAL_ONLY', onChange: () => setVisibility('EXPERT_INTERNAL_ONLY'), className: "form-radio text-[#248384]" }),
|
|
221
225
|
react_1.default.createElement("span", { className: "text-sm text-[#333333]" }, "Expert Only")),
|
|
226
|
+
react_1.default.createElement("label", { className: "flex items-center space-x-2 cursor-pointer" },
|
|
227
|
+
react_1.default.createElement("input", { type: "radio", checked: visibility === 'CLIENT_INTERNAL_ONLY', onChange: () => setVisibility('CLIENT_INTERNAL_ONLY'), className: "form-radio text-[#248384]" }),
|
|
228
|
+
react_1.default.createElement("span", { className: "text-sm text-[#333333]" }, "Client Only")),
|
|
222
229
|
react_1.default.createElement("label", { className: "flex items-center space-x-2 cursor-pointer" },
|
|
223
230
|
react_1.default.createElement("input", { type: "radio", checked: visibility === 'INTERNAL_ONLY', onChange: () => setVisibility('INTERNAL_ONLY'), className: "form-radio text-[#248384]" }),
|
|
224
231
|
react_1.default.createElement("span", { className: "text-sm text-[#333333]" }, "Internal Only")),
|