@rh-support/troubleshoot 2.6.29 → 2.6.30
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/esm/components/CaseEditView/CaseSolutions/CaseSolutions.d.ts.map +1 -1
- package/lib/esm/components/CaseEditView/CaseSolutions/CaseSolutions.js +18 -18
- package/lib/esm/components/CaseEditView/RequestRemoteSession/NewEssTermsModal.js +1 -1
- package/lib/esm/components/CaseEditView/RequestRemoteSession/RemoteSessionAgreementModal.js +1 -1
- package/lib/esm/components/CaseEditView/Tabs/CaseDetails/CasePhoneNumberConfirmAlert.js +1 -1
- package/lib/esm/components/CaseEditView/Tabs/CaseDiscussion/PostComment.d.ts.map +1 -1
- package/lib/esm/components/CaseEditView/Tabs/CaseDiscussion/PostComment.js +1 -1
- package/lib/esm/components/CaseManagement/SendNotifications/NonOrgCaseNotifyeesSelector.d.ts.map +1 -1
- package/lib/esm/components/CaseManagement/SendNotifications/NonOrgCaseNotifyeesSelector.js +7 -5
- package/lib/esm/scss/_main.scss +9 -0
- package/lib/esm/scss/_pf-overrides.scss +10 -0
- package/package.json +3 -3
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CaseSolutions.d.ts","sourceRoot":"","sources":["../../../../../src/components/CaseEditView/CaseSolutions/CaseSolutions.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"CaseSolutions.d.ts","sourceRoot":"","sources":["../../../../../src/components/CaseEditView/CaseSolutions/CaseSolutions.tsx"],"names":[],"mappings":"AAoBA,OAAO,KAAsD,MAAM,OAAO,CAAC;AAwE3E,UAAU,MAAM;IACZ,UAAU,EAAE,MAAM,CAAC;IACnB,sBAAsB,EAAE,OAAO,CAAC;CACnC;AAUD,eAAO,MAAM,aAAa,+EAihBxB,CAAC"}
|
|
@@ -19,7 +19,7 @@ var __rest = (this && this.__rest) || function (s, e) {
|
|
|
19
19
|
return t;
|
|
20
20
|
};
|
|
21
21
|
import { search } from '@cee-eng/hydrajs';
|
|
22
|
-
import {
|
|
22
|
+
import { Button, Card, CardBody, CardExpandableContent, CardHeader, Modal, ModalFooter, ModalVariant, } from '@patternfly/react-core';
|
|
23
23
|
import { PaginatedList, ToastNotification } from '@rh-support/components';
|
|
24
24
|
import { useGlobalStateContext } from '@rh-support/react-context';
|
|
25
25
|
import { AbilityContext, CaseDetailsFields, resourceActions, resources } from '@rh-support/user-permissions';
|
|
@@ -298,23 +298,23 @@ export const CaseSolutions = forwardRef((props, ref) => {
|
|
|
298
298
|
React.createElement(Trans, null, "Close case")))));
|
|
299
299
|
return (React.createElement(React.Fragment, null,
|
|
300
300
|
closeCaseModal,
|
|
301
|
-
React.createElement(Card,
|
|
302
|
-
|
|
303
|
-
React.createElement(
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
React.createElement(
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
React.createElement(
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
React.createElement(
|
|
301
|
+
linkedRecommendations.length > 0 && (React.createElement(Card, { isExpanded: isExpanded },
|
|
302
|
+
React.createElement(CardHeader, { className: "pf-v6-u-display-flex", onExpand: onExpand },
|
|
303
|
+
React.createElement("span", null, canLinkUnlink ? React.createElement(Trans, null, "Handpicked by you") : React.createElement(Trans, null, "Handpicked for this case")),
|
|
304
|
+
React.createElement("span", { className: "badge-item pf-v6-u-font-size-sm pf-v6-u-mx-sm" }, linkedRecommendations.length)),
|
|
305
|
+
React.createElement(CardExpandableContent, null,
|
|
306
|
+
React.createElement(CardBody, null, !hasLink ? (!canLinkUnlink ? (React.createElement(Trans, null, "If a Red Hat engineer finds an article or solution that can help with your case, they'll pin it here.")) : (React.createElement(React.Fragment, null))) : (React.createElement(PaginatedList, { id: "case-details-handpicked-recommendations", listItems: linkedRecommendations.map((rec, index) => canLinkUnlink
|
|
307
|
+
? renderHandPickedByRedHatter(rec, index, 'handpicked-recommendations')
|
|
308
|
+
: renderHandpickedCustomerView(rec, index, 'handpicked-recommendations')), perPage: 5, className: "list-icons list-icons-flush", isFetching: !!isLoadingRecommendations, perPageOptions: [
|
|
309
|
+
{ title: '5', value: 5 },
|
|
310
|
+
{ title: '10', value: 10 },
|
|
311
|
+
] })))))),
|
|
312
|
+
pinnedRecommendations.length > 0 && (React.createElement(Card, { isExpanded: pinnedOpen },
|
|
313
|
+
React.createElement(CardHeader, { className: "pf-v6-u-display-flex", onExpand: () => setPinnedOpen((pre) => !pre) },
|
|
314
|
+
React.createElement("span", null, canLinkUnlink ? (React.createElement(Trans, null, "Pinned by customer")) : (React.createElement(Trans, null, "My pinned recommendations"))),
|
|
315
|
+
React.createElement("span", { className: "badge-item pf-v6-u-font-size-sm pf-v6-u-mx-sm" }, pinnedRecommendations.length)),
|
|
316
|
+
React.createElement(CardExpandableContent, null,
|
|
317
|
+
React.createElement(CardBody, null, !hasPin ? (!canLinkUnlink ? (React.createElement(Trans, null, "When you save a recommended article or solution, you'll see it here. Saved items display only in this case and are not saved for later.")) : (React.createElement(React.Fragment, null))) : (React.createElement(PaginatedList, { id: "case-details-pinned-recommendations", listItems: pinnedRecommendations.map((rec, index) => canLinkUnlink
|
|
318
318
|
? renderPinnedByCustomerRedhatterView(rec, index, 'pinned-recommendations')
|
|
319
319
|
: renderPinsByCustomer(rec, index, 'pinned-recommendations')), perPage: 5, className: "list-icons list-icons-flush", isFetching: !!isLoadingRecommendations, perPageOptions: [
|
|
320
320
|
{ title: '5', value: 5 },
|
|
@@ -101,7 +101,7 @@ export function NewEssTermsModal(props) {
|
|
|
101
101
|
setSessionExpectations('');
|
|
102
102
|
setImpact('');
|
|
103
103
|
setSessionLink('');
|
|
104
|
-
setIsRemoteSessionForm(
|
|
104
|
+
setIsRemoteSessionForm(remoteSessionTermsAcked);
|
|
105
105
|
props.onClose && props.onClose();
|
|
106
106
|
};
|
|
107
107
|
const languageOptions = Object.keys(allTranslations).map((option) => ({
|
|
@@ -101,7 +101,7 @@ export function RemoteSessionAgreementModal(props) {
|
|
|
101
101
|
setSessionExpectations('');
|
|
102
102
|
setImpact('');
|
|
103
103
|
setSessionLink('');
|
|
104
|
-
setIsRemoteSessionForm(
|
|
104
|
+
setIsRemoteSessionForm(remoteSessionTermsAcked);
|
|
105
105
|
props.onClose && props.onClose();
|
|
106
106
|
};
|
|
107
107
|
const toggleRemoteSessionForm = () => setIsRemoteSessionForm(true);
|
|
@@ -63,7 +63,7 @@ export function CaseContactPhoneNumberAlert(props) {
|
|
|
63
63
|
React.createElement(Trans, null, "Yes, confirm phone number")),
|
|
64
64
|
React.createElement(Button, { isInline: true, className: "pf-v6-u-mr-md", variant: ButtonVariant.link, key: "case-contact-phone-number-review", component: "a", href: `#/case/${caseNumber}/management`, onClick: () => goToPhoneField(), "data-tracking-id": "case-contact-phone-number-review" },
|
|
65
65
|
React.createElement(Trans, null, "No, update phone number")),
|
|
66
|
-
React.createElement(Button, { isInline: true, key: "case-contact-phone-number-alert-close",
|
|
66
|
+
React.createElement(Button, { isInline: true, key: "case-contact-phone-number-alert-close", className: "pf-v6-c-button pf-m-link pf-m-inline", onClick: () => setCloseConfirmAlert(!closeConfirmAlert), "data-tracking-id": "case-contact-phone-number-alert-close", isDisabled: isCaseUpdating },
|
|
67
67
|
React.createElement(Trans, null, "Close")),
|
|
68
68
|
] },
|
|
69
69
|
React.createElement(Trans, null, confirmationMessage))) : props.isConfirm && !isExportingPDF ? (React.createElement(Alert, { isInline: true, className: "pf-v6-u-p-sm pf-v6-u-mb-md phone-review-banner", variant: AlertVariant.warning, title: t('Review phone number'), component: "p", actionLinks: [
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PostComment.d.ts","sourceRoot":"","sources":["../../../../../../src/components/CaseEditView/Tabs/CaseDiscussion/PostComment.tsx"],"names":[],"mappings":"AA8BA,OAAO,KAAwE,MAAM,OAAO,CAAC;AAQ7F,OAAO,EAAkB,WAAW,EAAE,MAAM,+CAA+C,CAAC;AAsB5F,UAAU,MAAM;IACZ,UAAU,EAAE,MAAM,CAAC;IACnB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,cAAc,CAAC,EAAE,MAAM,OAAO,CAAC,IAAI,CAAC,CAAC;IACrC,iBAAiB,CAAC,EAAE,MAAM,IAAI,CAAC;IAC/B,kBAAkB,CAAC,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,IAAI,CAAC;IAC5C,cAAc,CAAC,EAAE,MAAM,IAAI,CAAC;IAC5B,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B,cAAc,EAAE,WAAW,EAAE,CAAC;CACjC;AAED,wBAAgB,WAAW,CAAC,KAAK,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"PostComment.d.ts","sourceRoot":"","sources":["../../../../../../src/components/CaseEditView/Tabs/CaseDiscussion/PostComment.tsx"],"names":[],"mappings":"AA8BA,OAAO,KAAwE,MAAM,OAAO,CAAC;AAQ7F,OAAO,EAAkB,WAAW,EAAE,MAAM,+CAA+C,CAAC;AAsB5F,UAAU,MAAM;IACZ,UAAU,EAAE,MAAM,CAAC;IACnB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,cAAc,CAAC,EAAE,MAAM,OAAO,CAAC,IAAI,CAAC,CAAC;IACrC,iBAAiB,CAAC,EAAE,MAAM,IAAI,CAAC;IAC/B,kBAAkB,CAAC,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,IAAI,CAAC;IAC5C,cAAc,CAAC,EAAE,MAAM,IAAI,CAAC;IAC5B,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B,cAAc,EAAE,WAAW,EAAE,CAAC;CACjC;AAED,wBAAgB,WAAW,CAAC,KAAK,EAAE,MAAM,qBA8iBxC"}
|
|
@@ -354,7 +354,7 @@ export function PostComment(props) {
|
|
|
354
354
|
React.createElement(Trans, null, "Submit")),
|
|
355
355
|
canAddAttachments &&
|
|
356
356
|
(isPublic && canPostPrivateComments ? (React.createElement(Tooltip, { content: t('You can attach files privately') }, fileUploadButton)) : (fileUploadButton)),
|
|
357
|
-
React.createElement(Button, { "data-tracking-id": "postcomment-cancel-button", type: "button", variant: ButtonVariant.link, onClick: onCancelClick, isDisabled: isPostCommentDisabled },
|
|
357
|
+
React.createElement(Button, { className: "secondary-button-pill", "data-tracking-id": "postcomment-cancel-button", type: "button", variant: ButtonVariant.link, onClick: onCancelClick, isDisabled: isPostCommentDisabled },
|
|
358
358
|
React.createElement(Trans, null, "Cancel")),
|
|
359
359
|
canPostPrivateComments && (React.createElement("span", { className: "post-comment-checkbox" },
|
|
360
360
|
React.createElement(Checkbox, { label: t('Private'), isChecked: !isPublic && canPostPrivateComments, onChange: handleCheckboxToggle, "aria-label": t('Private'), id: "private-comment", name: "private-comment", "data-tracking-id": "private-comment-checkbox" }))))),
|
package/lib/esm/components/CaseManagement/SendNotifications/NonOrgCaseNotifyeesSelector.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"NonOrgCaseNotifyeesSelector.d.ts","sourceRoot":"","sources":["../../../../../src/components/CaseManagement/SendNotifications/NonOrgCaseNotifyeesSelector.tsx"],"names":[],"mappings":"AAgBA,OAAO,EAAwB,oBAAoB,EAAY,MAAM,wBAAwB,CAAC;AAE9F,OAAO,EAAE,gBAAgB,EAAE,MAAM,0BAA0B,CAAC;AAC5D,OAAO,KAAkD,MAAM,OAAO,CAAC;AAGvE,UAAU,MAAO,SAAQ,gBAAgB;IACrC,aAAa,EAAE,oBAAoB,EAAE,CAAC;IACtC,WAAW,EAAE,MAAM,CAAC;IACpB,UAAU,EAAE,OAAO,CAAC;IACpB,QAAQ,EAAE,CAAC,aAAa,EAAE,oBAAoB,EAAE,KAAK,IAAI,CAAC;IAC1D,cAAc,EAAE,MAAM,CAAC;IACvB,cAAc,EAAE,OAAO,CAAC;IACxB,aAAa,EAAE,MAAM,CAAC;IACtB,WAAW,EAAE,MAAM,CAAC;IACpB,YAAY,EAAE,KAAK,CAAC,gBAAgB,CAAC,GAAG,CAAC,CAAC;IAC1C,kBAAkB,EAAE,MAAM,CAAC;CAC9B;AAqCD,wBAAgB,2BAA2B,CAAC,KAAK,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"NonOrgCaseNotifyeesSelector.d.ts","sourceRoot":"","sources":["../../../../../src/components/CaseManagement/SendNotifications/NonOrgCaseNotifyeesSelector.tsx"],"names":[],"mappings":"AAgBA,OAAO,EAAwB,oBAAoB,EAAY,MAAM,wBAAwB,CAAC;AAE9F,OAAO,EAAE,gBAAgB,EAAE,MAAM,0BAA0B,CAAC;AAC5D,OAAO,KAAkD,MAAM,OAAO,CAAC;AAGvE,UAAU,MAAO,SAAQ,gBAAgB;IACrC,aAAa,EAAE,oBAAoB,EAAE,CAAC;IACtC,WAAW,EAAE,MAAM,CAAC;IACpB,UAAU,EAAE,OAAO,CAAC;IACpB,QAAQ,EAAE,CAAC,aAAa,EAAE,oBAAoB,EAAE,KAAK,IAAI,CAAC;IAC1D,cAAc,EAAE,MAAM,CAAC;IACvB,cAAc,EAAE,OAAO,CAAC;IACxB,aAAa,EAAE,MAAM,CAAC;IACtB,WAAW,EAAE,MAAM,CAAC;IACpB,YAAY,EAAE,KAAK,CAAC,gBAAgB,CAAC,GAAG,CAAC,CAAC;IAC1C,kBAAkB,EAAE,MAAM,CAAC;CAC9B;AAqCD,wBAAgB,2BAA2B,CAAC,KAAK,EAAE,MAAM,qBA6NxD"}
|
|
@@ -155,7 +155,12 @@ export function NonOrgCaseNotifyeesSelector(props) {
|
|
|
155
155
|
React.createElement(FlexItem, { grow: { sm: 'grow' } },
|
|
156
156
|
React.createElement("div", null,
|
|
157
157
|
renderSelectedItems(),
|
|
158
|
-
React.createElement(
|
|
158
|
+
React.createElement(Flex, null,
|
|
159
|
+
React.createElement(FlexItem, { grow: { sm: 'grow' } },
|
|
160
|
+
React.createElement(Popper, { trigger: React.createElement(TextInput, { ref: inputRef, id: props.id, "data-tracking-id": props.dataTrackingId, value: inputVal, onChange: (event, value) => onInputChange(value), placeholder: props.placeholder, isDisabled: props.isDisabled || isFetching, onBlur: onBlur, validated: showGroupPermissionError || showAccountPermissionError ? 'error' : 'default' }), popper: menu, isVisible: isDropdownOpen && notifyeesList.length > 0, position: "start" })),
|
|
161
|
+
React.createElement(FlexItem, null,
|
|
162
|
+
React.createElement(Button, { variant: "primary", onClick: onAddClick, isLoading: props.isDisabled || isFetching, spinnerAriaValueText: props.isDisabled ? 'Loading' : undefined, isDisabled: !(inputVal || '').trim() || props.isDisabled || isFetching, "data-tracking-id": `${props.dataTrackingId}-add-btn` },
|
|
163
|
+
React.createElement(Trans, null, "Add"))))),
|
|
159
164
|
props.selectedItems.length > 0 && !showAccountPermissionError && !showAccountPermissionError && (React.createElement("p", { className: "form-instructions" },
|
|
160
165
|
React.createElement(Trans, null, "Enter an email address or username for the person you want to notify"))),
|
|
161
166
|
React.createElement("p", { className: "pf-v6-c-form__helper-text pf-m-error", style: { color: '#c9190b' } },
|
|
@@ -166,8 +171,5 @@ export function NonOrgCaseNotifyeesSelector(props) {
|
|
|
166
171
|
inputVal,
|
|
167
172
|
" isn't associated with your account. Please contact Org Admin to add them to your account.")),
|
|
168
173
|
!showGroupPermissionError && !showAccountPermissionError && (React.createElement("p", { className: "form-instructions" },
|
|
169
|
-
React.createElement(Trans, null, "Include someone from your account to inform about the status of this case.")))))
|
|
170
|
-
React.createElement(FlexItem, { style: { alignSelf: 'flex-start' } },
|
|
171
|
-
React.createElement(Button, { variant: "primary", onClick: onAddClick, isLoading: props.isDisabled || isFetching, spinnerAriaValueText: props.isDisabled ? 'Loading' : undefined, isDisabled: !(inputVal || '').trim() || props.isDisabled || isFetching, "data-tracking-id": `${props.dataTrackingId}-add-btn` },
|
|
172
|
-
React.createElement(Trans, null, "Add")))));
|
|
174
|
+
React.createElement(Trans, null, "Include someone from your account to inform about the status of this case.")))))));
|
|
173
175
|
}
|
package/lib/esm/scss/_main.scss
CHANGED
|
@@ -660,6 +660,10 @@ mark {
|
|
|
660
660
|
margin-left: -2rem;
|
|
661
661
|
}
|
|
662
662
|
|
|
663
|
+
.list-icons li:last-child {
|
|
664
|
+
margin-bottom: 0;
|
|
665
|
+
}
|
|
666
|
+
|
|
663
667
|
// pinning feature - can't be overly specific here
|
|
664
668
|
.recommendation-header {
|
|
665
669
|
font-size: 14px;
|
|
@@ -983,6 +987,7 @@ svg.pf-v6-u-ml-xs.icon-size {
|
|
|
983
987
|
button {
|
|
984
988
|
padding: 0;
|
|
985
989
|
display: flex;
|
|
990
|
+
min-width: 7rem;
|
|
986
991
|
}
|
|
987
992
|
.eval-icons span {
|
|
988
993
|
color: var(--pf-v5-global--primary-color--200);
|
|
@@ -996,6 +1001,10 @@ svg.pf-v6-u-ml-xs.icon-size {
|
|
|
996
1001
|
padding: 0.2rem;
|
|
997
1002
|
}
|
|
998
1003
|
|
|
1004
|
+
#case-details-pinned-recommendations {
|
|
1005
|
+
margin-bottom: 0;
|
|
1006
|
+
}
|
|
1007
|
+
|
|
999
1008
|
.card-body-wrapper {
|
|
1000
1009
|
display: flex;
|
|
1001
1010
|
padding: 16px;
|
|
@@ -816,3 +816,13 @@ div.case-details-tabs pre {
|
|
|
816
816
|
.pf-v6-c-alert__description {
|
|
817
817
|
color: #000000;
|
|
818
818
|
}
|
|
819
|
+
|
|
820
|
+
.pf-v6-c-card__header.pf-v6-u-display-flex > .pf-v6-c-card__header-toggle {
|
|
821
|
+
align-self: center;
|
|
822
|
+
}
|
|
823
|
+
|
|
824
|
+
.pf-v6-c-button.secondary-button-pill {
|
|
825
|
+
border-radius: var(--pf-t--global--border--radius--400);
|
|
826
|
+
padding-left: 1.5rem;
|
|
827
|
+
padding-right: 1.5rem;
|
|
828
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rh-support/troubleshoot",
|
|
3
|
-
"version": "2.6.
|
|
3
|
+
"version": "2.6.30",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public",
|
|
6
6
|
"registry": "https://registry.npmjs.org"
|
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
"@progress/kendo-react-pdf": "^5.16.0",
|
|
60
60
|
"@redux-devtools/extension": "^3.3.0",
|
|
61
61
|
"@rh-support/components": "2.5.33",
|
|
62
|
-
"@rh-support/react-context": "2.5.
|
|
62
|
+
"@rh-support/react-context": "2.5.36",
|
|
63
63
|
"@rh-support/types": "2.0.5",
|
|
64
64
|
"@rh-support/user-permissions": "2.5.20",
|
|
65
65
|
"@rh-support/utils": "2.5.19",
|
|
@@ -134,5 +134,5 @@
|
|
|
134
134
|
"defaults and supports es6-module",
|
|
135
135
|
"maintained node versions"
|
|
136
136
|
],
|
|
137
|
-
"gitHead": "
|
|
137
|
+
"gitHead": "60ca9bb964b292380cd258edc372803a9a387f57"
|
|
138
138
|
}
|