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