@rh-support/manage 2.5.275 → 2.5.276
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/ManageCaseLabels/AddEditCaseLabelModal.d.ts.map +1 -1
- package/lib/esm/components/ManageCaseLabels/AddEditCaseLabelModal.js +31 -17
- package/lib/esm/components/ManageCaseLabels/ManageCaseLabelsTab.d.ts.map +1 -1
- package/lib/esm/components/ManageCaseLabels/ManageCaseLabelsTab.js +14 -11
- package/lib/esm/hooks/useCaseLabelGraphQL.d.ts.map +1 -1
- package/lib/esm/hooks/useCaseLabelGraphQL.js +13 -9
- package/package.json +6 -6
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AddEditCaseLabelModal.d.ts","sourceRoot":"","sources":["../../../../src/components/ManageCaseLabels/AddEditCaseLabelModal.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"AddEditCaseLabelModal.d.ts","sourceRoot":"","sources":["../../../../src/components/ManageCaseLabels/AddEditCaseLabelModal.tsx"],"names":[],"mappings":"AAkBA,OAAO,KAA8B,MAAM,OAAO,CAAC;AAGnD,OAAO,EAAE,UAAU,EAAE,MAAM,SAAS,CAAC;AACrC,MAAM,MAAM,mBAAmB,GAAG;IAC9B,OAAO,EAAE,OAAO,CAAC;IACjB,UAAU,CAAC,EAAE,MAAM,CAAC;CACvB,CAAC;AAEF,UAAU,MAAM;IACZ,MAAM,EAAE,OAAO,CAAC;IAChB,OAAO,EAAE,OAAO,CAAC;IACjB,KAAK,CAAC,EAAE,UAAU,GAAG,IAAI,CAAC;IAC1B,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,OAAO,EAAE,MAAM,IAAI,CAAC;IACpB,MAAM,EAAE,CAAC,IAAI,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE;QAAE,QAAQ,CAAC,EAAE,OAAO,CAAA;KAAE,KAAK,OAAO,CAAC,mBAAmB,CAAC,GAAG,mBAAmB,CAAC;CAClH;AAED,wBAAgB,qBAAqB,CAAC,EAAE,MAAM,EAAE,OAAO,EAAE,KAAK,EAAE,QAAgB,EAAE,OAAO,EAAE,MAAM,EAAE,EAAE,MAAM,qBAkJ1G"}
|
|
@@ -7,7 +7,8 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
7
7
|
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
8
8
|
});
|
|
9
9
|
};
|
|
10
|
-
import { Button, ButtonVariant, FormGroup, FormHelperText, HelperText, HelperTextItem, Modal, ModalBody, ModalFooter, ModalHeader, ModalVariant, TextInput, } from '@patternfly/react-core';
|
|
10
|
+
import { Button, ButtonVariant, Flex, FlexItem, FormGroup, FormHelperText, HelperText, HelperTextItem, Modal, ModalBody, ModalFooter, ModalHeader, ModalVariant, TextInput, } from '@patternfly/react-core';
|
|
11
|
+
import { CASE_LABEL_NAME_MAX_LENGTH } from '@rh-support/utils';
|
|
11
12
|
import isEmpty from 'lodash/isEmpty';
|
|
12
13
|
import React, { useEffect, useState } from 'react';
|
|
13
14
|
import { Trans, useTranslation } from 'react-i18next';
|
|
@@ -21,20 +22,19 @@ export function AddEditCaseLabelModal({ isOpen, addMode, label, isSaving = false
|
|
|
21
22
|
setError('');
|
|
22
23
|
}
|
|
23
24
|
}, [isOpen, addMode, label]);
|
|
24
|
-
const
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
}
|
|
28
|
-
return '';
|
|
29
|
-
};
|
|
25
|
+
const isOverMaxLength = name.length > CASE_LABEL_NAME_MAX_LENGTH;
|
|
26
|
+
const isNameEmpty = isEmpty(name.trim());
|
|
27
|
+
const canSave = !isNameEmpty && !isOverMaxLength && !isSaving;
|
|
30
28
|
const resetForm = () => {
|
|
31
29
|
setName('');
|
|
32
30
|
setError('');
|
|
33
31
|
};
|
|
34
32
|
const handleSave = () => __awaiter(this, void 0, void 0, function* () {
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
33
|
+
if (isNameEmpty) {
|
|
34
|
+
setError(t('Case label name cannot be empty.'));
|
|
35
|
+
return;
|
|
36
|
+
}
|
|
37
|
+
if (isOverMaxLength) {
|
|
38
38
|
return;
|
|
39
39
|
}
|
|
40
40
|
const result = yield onSave(name.trim(), { keepOpen: false });
|
|
@@ -43,9 +43,11 @@ export function AddEditCaseLabelModal({ isOpen, addMode, label, isSaving = false
|
|
|
43
43
|
}
|
|
44
44
|
});
|
|
45
45
|
const handleSaveAndNew = () => __awaiter(this, void 0, void 0, function* () {
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
46
|
+
if (isNameEmpty) {
|
|
47
|
+
setError(t('Case label name cannot be empty.'));
|
|
48
|
+
return;
|
|
49
|
+
}
|
|
50
|
+
if (isOverMaxLength) {
|
|
49
51
|
return;
|
|
50
52
|
}
|
|
51
53
|
const result = yield onSave(name.trim(), { keepOpen: true });
|
|
@@ -68,15 +70,27 @@ export function AddEditCaseLabelModal({ isOpen, addMode, label, isSaving = false
|
|
|
68
70
|
React.createElement(FormGroup, { label: t('Case label name'), isRequired: true },
|
|
69
71
|
React.createElement(TextInput, { isRequired: true, type: "text", id: "case-label-name-input", value: name, onChange: (_, value) => {
|
|
70
72
|
setName(value);
|
|
71
|
-
|
|
72
|
-
|
|
73
|
+
if (!isEmpty(error)) {
|
|
74
|
+
setError('');
|
|
75
|
+
}
|
|
76
|
+
}, placeholder: t('Enter a unique case label name'), validated: isOverMaxLength || !isEmpty(error) ? 'error' : 'default', isDisabled: isSaving }),
|
|
77
|
+
React.createElement(FormHelperText, null,
|
|
78
|
+
React.createElement(Flex, { justifyContent: { default: 'justifyContentFlexEnd' } },
|
|
79
|
+
React.createElement(FlexItem, null,
|
|
80
|
+
React.createElement(HelperText, null,
|
|
81
|
+
React.createElement(HelperTextItem, { variant: "default", className: `pf-v6-u-font-size-sm ${isOverMaxLength
|
|
82
|
+
? 'pf-v6-u-text-color-status-danger'
|
|
83
|
+
: 'pf-v6-u-text-color-subtle'}` }, t('{{count}}/{{max}} characters', {
|
|
84
|
+
count: name.length,
|
|
85
|
+
max: CASE_LABEL_NAME_MAX_LENGTH,
|
|
86
|
+
})))))),
|
|
73
87
|
!isEmpty(error) && (React.createElement(FormHelperText, null,
|
|
74
88
|
React.createElement(HelperText, null,
|
|
75
89
|
React.createElement(HelperTextItem, { variant: "error" }, error)))))),
|
|
76
90
|
React.createElement(ModalFooter, null,
|
|
77
|
-
React.createElement(Button, { key: "save", variant: ButtonVariant.primary, onClick: handleSave, isDisabled:
|
|
91
|
+
React.createElement(Button, { key: "save", variant: ButtonVariant.primary, onClick: handleSave, isDisabled: !canSave, isLoading: isSaving },
|
|
78
92
|
React.createElement(Trans, null, "Save")),
|
|
79
|
-
addMode && (React.createElement(Button, { key: "save-and-new", variant: ButtonVariant.secondary, onClick: handleSaveAndNew, isDisabled:
|
|
93
|
+
addMode && (React.createElement(Button, { key: "save-and-new", variant: ButtonVariant.secondary, onClick: handleSaveAndNew, isDisabled: !canSave, isLoading: isSaving },
|
|
80
94
|
React.createElement(Trans, null, "Save & New"))),
|
|
81
95
|
React.createElement(Button, { key: "cancel", variant: ButtonVariant.link, onClick: handleClose, isDisabled: isSaving },
|
|
82
96
|
React.createElement(Trans, null, "Cancel")))));
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ManageCaseLabelsTab.d.ts","sourceRoot":"","sources":["../../../../src/components/ManageCaseLabels/ManageCaseLabelsTab.tsx"],"names":[],"mappings":"AAoBA,OAAO,KAAuC,MAAM,OAAO,CAAC;AAoC5D,wBAAgB,mBAAmB,
|
|
1
|
+
{"version":3,"file":"ManageCaseLabelsTab.d.ts","sourceRoot":"","sources":["../../../../src/components/ManageCaseLabels/ManageCaseLabelsTab.tsx"],"names":[],"mappings":"AAoBA,OAAO,KAAuC,MAAM,OAAO,CAAC;AAoC5D,wBAAgB,mBAAmB,sBAwUlC"}
|
|
@@ -41,8 +41,9 @@ export function ManageCaseLabelsTab() {
|
|
|
41
41
|
const { t } = useTranslation();
|
|
42
42
|
const history = useHistory();
|
|
43
43
|
const confirmation = useConfirmation();
|
|
44
|
-
const { globalMetadataState: { loggedInUsersAccount }, } = useGlobalStateContext();
|
|
44
|
+
const { globalMetadataState: { loggedInUsersAccount, loggedInUserRights }, } = useGlobalStateContext();
|
|
45
45
|
const accountId = (_a = loggedInUsersAccount === null || loggedInUsersAccount === void 0 ? void 0 : loggedInUsersAccount.data) === null || _a === void 0 ? void 0 : _a.salesforceAccountId;
|
|
46
|
+
const canManageCaseLabels = loggedInUserRights.data.isOrgAdmin();
|
|
46
47
|
const { labels: fetchedLabels, loading: isFetchingLabels, error: labelsError, refetch } = useCaseLabels(accountId);
|
|
47
48
|
const { createCaseLabel, loading: isCreatingLabel } = useCreateCaseLabel();
|
|
48
49
|
const { updateCaseLabel, loading: isUpdatingLabel } = useUpdateCaseLabel();
|
|
@@ -157,7 +158,8 @@ export function ManageCaseLabelsTab() {
|
|
|
157
158
|
}
|
|
158
159
|
});
|
|
159
160
|
const onViewAssignedCases = (label) => {
|
|
160
|
-
|
|
161
|
+
// Match Case List URL format (SolrQueryBuilder): caseLabel: ("<id>") orderBy lastModifiedDate desc
|
|
162
|
+
const query = `caseLabel: ("${label.id}") orderBy lastModifiedDate desc`;
|
|
161
163
|
history.push({
|
|
162
164
|
pathname: '/case/list',
|
|
163
165
|
search: getStringifiedParams({
|
|
@@ -180,11 +182,11 @@ export function ManageCaseLabelsTab() {
|
|
|
180
182
|
React.createElement("div", { className: "case-label-row__actions" },
|
|
181
183
|
label.assignedCaseCount > 0 && (React.createElement(Button, { variant: ButtonVariant.link, isInline: true, onClick: () => onViewAssignedCases(label), "data-tracking-id": "case-label-view-assigned-cases" },
|
|
182
184
|
React.createElement(Trans, null, "View assigned cases"))),
|
|
183
|
-
React.createElement(ActionList, { isIconList: true },
|
|
185
|
+
canManageCaseLabels && (React.createElement(ActionList, { isIconList: true },
|
|
184
186
|
React.createElement(ActionListItem, null,
|
|
185
187
|
React.createElement(Button, { icon: React.createElement(PencilAltIcon, null), "aria-label": t('Edit case label {{name}}', { name: label.name }), variant: "plain", onClick: () => onOpenEditModal(label), "data-tracking-id": "case-label-edit" })),
|
|
186
188
|
React.createElement(ActionListItem, null,
|
|
187
|
-
React.createElement(Button, { icon: React.createElement(TrashIcon, null), "aria-label": t('Delete case label {{name}}', { name: label.name }), variant: "plain", onClick: () => onDeleteLabel(label), "data-tracking-id": "case-label-delete" })))))),
|
|
189
|
+
React.createElement(Button, { icon: React.createElement(TrashIcon, null), "aria-label": t('Delete case label {{name}}', { name: label.name }), variant: "plain", onClick: () => onDeleteLabel(label), "data-tracking-id": "case-label-delete" }))))))),
|
|
188
190
|
},
|
|
189
191
|
];
|
|
190
192
|
return (React.createElement(React.Fragment, null,
|
|
@@ -199,19 +201,20 @@ export function ManageCaseLabelsTab() {
|
|
|
199
201
|
React.createElement(Trans, null, "Case labels"))),
|
|
200
202
|
!hasNoLabels && (React.createElement(React.Fragment, null,
|
|
201
203
|
React.createElement(SearchInput, { className: "pf-v6-u-flex-grow-1 pf-v6-c-search-input pf-v6-u-background-color-100", value: searchString, id: "search-case-label-input", placeholder: t('Search case label by name.'), "aria-label": t('Search case label by name'), onChange: (_, val) => setSearchString(val), onClear: () => setSearchString('') }),
|
|
202
|
-
React.createElement("span", { className: "pf-v6-u-ml-sm" },
|
|
204
|
+
canManageCaseLabels && (React.createElement("span", { className: "pf-v6-u-ml-sm" },
|
|
203
205
|
React.createElement(Button, { variant: ButtonVariant.primary, isInline: true, onClick: onOpenAddModal, "data-tracking-id": "case-label-add-button" },
|
|
204
|
-
React.createElement(Trans, null, "Add")))))),
|
|
206
|
+
React.createElement(Trans, null, "Add"))))))),
|
|
205
207
|
!hasNoLabels && (React.createElement("div", { className: "toolbar-right case-labels-toolbar__loaded pf-v6-u-color-200" }, t('{{loaded}} of {{total}} loaded.', {
|
|
206
208
|
loaded: filteredLabels.length,
|
|
207
209
|
total: filteredLabels.length,
|
|
208
210
|
})))),
|
|
209
211
|
React.createElement(AddEditCaseLabelModal, { isOpen: isModalOpen, addMode: isInAddMode, label: selectedLabel, isSaving: isCreatingLabel || isUpdatingLabel, onClose: closeModal, onSave: onSaveLabel }),
|
|
210
212
|
React.createElement(ErrorBoundary, { errorMsgInfo: { message: t('There was an error loading case labels list') } }, hasNoLabels ? (React.createElement("div", { className: "table-wrapper case-labels-empty-state" },
|
|
211
|
-
React.createElement(EmptyState, { headingLevel: "h2", icon: CubesIcon, titleText: t('Create your first case label'), variant: EmptyStateVariant.lg },
|
|
212
|
-
React.createElement(EmptyStateBody, null,
|
|
213
|
-
|
|
214
|
-
React.createElement(EmptyStateFooter, null,
|
|
213
|
+
React.createElement(EmptyState, { headingLevel: "h2", icon: CubesIcon, titleText: canManageCaseLabels ? t('Create your first case label') : t('No case labels available'), variant: EmptyStateVariant.lg },
|
|
214
|
+
React.createElement(EmptyStateBody, null, canManageCaseLabels ? (React.createElement(Trans, null, "Case labels help you organize and categorize cases with custom tags, making them easier to find, filter, and manage.")) : (React.createElement(Trans, null, "Your organization admin hasn't created any labels yet. Contact them to add labels for organizing and categorizing cases."))),
|
|
215
|
+
canManageCaseLabels && (React.createElement(EmptyStateFooter, null,
|
|
215
216
|
React.createElement(Button, { variant: ButtonVariant.link, onClick: onOpenAddModal, "data-tracking-id": "case-label-empty-create-button" },
|
|
216
|
-
React.createElement(Trans, null, "Create label")))))) : (React.createElement(ManageTable, { ariaLabel: t('Table to manage case labels'), columns: columns, data: filteredLabels, errorVariant: AlertVariant.warning, isFetching: isFetchingLabels, isError: !!labelsError, errorTitle: t('Case labels error'), errorComponent: React.createElement(Trans, null, "Could not get case labels"),
|
|
217
|
+
React.createElement(Trans, null, "Create label"))))))) : (React.createElement(ManageTable, { ariaLabel: t('Table to manage case labels'), columns: columns, data: filteredLabels, errorVariant: AlertVariant.warning, isFetching: isFetchingLabels, isError: !!labelsError, errorTitle: t('Case labels error'), errorComponent: React.createElement(Trans, null, "Could not get case labels"), noResultText: canManageCaseLabels
|
|
218
|
+
? t('There are no results to display. Try adding a case label or refining your search')
|
|
219
|
+
: t('There are no results to display. Try refining your search') })))));
|
|
217
220
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useCaseLabelGraphQL.d.ts","sourceRoot":"","sources":["../../../src/hooks/useCaseLabelGraphQL.ts"],"names":[],"mappings":"AACA,OAAO,EAEH,KAAK,uBAAuB,EAE5B,KAAK,uBAAuB,
|
|
1
|
+
{"version":3,"file":"useCaseLabelGraphQL.d.ts","sourceRoot":"","sources":["../../../src/hooks/useCaseLabelGraphQL.ts"],"names":[],"mappings":"AACA,OAAO,EAEH,KAAK,uBAAuB,EAE5B,KAAK,uBAAuB,EAE5B,KAAK,uBAAuB,EAQ/B,MAAM,mBAAmB,CAAC;AAI3B,OAAO,EAAE,UAAU,EAAE,MAAM,sCAAsC,CAAC;AAQlE,UAAU,mBAAmB;IACzB,MAAM,EAAE,UAAU,EAAE,CAAC;IACrB,OAAO,EAAE,OAAO,CAAC;IACjB,KAAK,EAAE,KAAK,GAAG,SAAS,CAAC;IACzB,OAAO,EAAE,MAAM,OAAO,CAAC,IAAI,CAAC,CAAC;CAChC;AAED,wBAAgB,aAAa,CAAC,SAAS,CAAC,EAAE,MAAM,GAAG,mBAAmB,CA8BrE;AAED,UAAU,wBAAwB;IAC9B,eAAe,EAAE,CAAC,IAAI,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,KAAK,OAAO,CAAC,uBAAuB,CAAC,CAAC;IACvF,OAAO,EAAE,OAAO,CAAC;CACpB;AAED,wBAAgB,kBAAkB,IAAI,wBAAwB,CA4B7D;AAED,UAAU,wBAAwB;IAC9B,eAAe,EAAE,CAAC,EAAE,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,KAAK,OAAO,CAAC,uBAAuB,CAAC,CAAC;IAChF,OAAO,EAAE,OAAO,CAAC;CACpB;AAED,wBAAgB,kBAAkB,IAAI,wBAAwB,CAkB7D;AAED,UAAU,wBAAwB;IAC9B,eAAe,EAAE,CAAC,EAAE,EAAE,MAAM,KAAK,OAAO,CAAC,uBAAuB,CAAC,CAAC;IAClE,OAAO,EAAE,OAAO,CAAC;CACpB;AAED,wBAAgB,kBAAkB,IAAI,wBAAwB,CAW7D"}
|
|
@@ -8,7 +8,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
8
8
|
});
|
|
9
9
|
};
|
|
10
10
|
import { useApolloClient, useMutation } from '@apollo/client/react';
|
|
11
|
-
import { CREATE_CASE_LABEL, DELETE_CASE_LABEL, GET_CASE_LABELS, UPDATE_CASE_LABEL, } from '@rh-support/utils';
|
|
11
|
+
import { CASE_LABEL_QUERY_LIMIT, CREATE_CASE_LABEL, DELETE_CASE_LABEL, fetchAllAccountCaseLabels, GET_CASE_LABELS, UPDATE_CASE_LABEL, } from '@rh-support/utils';
|
|
12
12
|
import unescape from 'lodash/unescape';
|
|
13
13
|
import { useCallback, useEffect, useState } from 'react';
|
|
14
14
|
const mapCaseLabelNode = (node) => {
|
|
@@ -25,7 +25,6 @@ export function useCaseLabels(accountId) {
|
|
|
25
25
|
const [loading, setLoading] = useState(false);
|
|
26
26
|
const [error, setError] = useState(undefined);
|
|
27
27
|
const fetchLabels = useCallback(() => __awaiter(this, void 0, void 0, function* () {
|
|
28
|
-
var _a, _b, _c, _d;
|
|
29
28
|
if (!accountId) {
|
|
30
29
|
setLabels([]);
|
|
31
30
|
return;
|
|
@@ -33,13 +32,8 @@ export function useCaseLabels(accountId) {
|
|
|
33
32
|
setLoading(true);
|
|
34
33
|
setError(undefined);
|
|
35
34
|
try {
|
|
36
|
-
const
|
|
37
|
-
|
|
38
|
-
variables: { where: { Account__c: { eq: accountId } } },
|
|
39
|
-
fetchPolicy: 'network-only',
|
|
40
|
-
});
|
|
41
|
-
const edges = (_d = (_c = (_b = (_a = data === null || data === void 0 ? void 0 : data.redhat_support_uiapi) === null || _a === void 0 ? void 0 : _a.query) === null || _b === void 0 ? void 0 : _b.RedHatSupportCaseLabel__c) === null || _c === void 0 ? void 0 : _c.edges) !== null && _d !== void 0 ? _d : [];
|
|
42
|
-
setLabels(edges.map(({ node }) => mapCaseLabelNode(node)).filter((label) => label.id && label.name));
|
|
35
|
+
const labelNodes = yield fetchAllAccountCaseLabels(client, accountId);
|
|
36
|
+
setLabels(labelNodes.map((node) => mapCaseLabelNode(node)).filter((label) => label.id && label.name));
|
|
43
37
|
}
|
|
44
38
|
catch (e) {
|
|
45
39
|
setError(e);
|
|
@@ -66,6 +60,16 @@ export function useCreateCaseLabel() {
|
|
|
66
60
|
},
|
|
67
61
|
},
|
|
68
62
|
},
|
|
63
|
+
refetchQueries: [
|
|
64
|
+
{
|
|
65
|
+
query: GET_CASE_LABELS,
|
|
66
|
+
variables: {
|
|
67
|
+
where: { Account__c: { eq: accountId } },
|
|
68
|
+
first: CASE_LABEL_QUERY_LIMIT,
|
|
69
|
+
},
|
|
70
|
+
},
|
|
71
|
+
],
|
|
72
|
+
awaitRefetchQueries: true,
|
|
69
73
|
});
|
|
70
74
|
return result.data;
|
|
71
75
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rh-support/manage",
|
|
3
|
-
"version": "2.5.
|
|
3
|
+
"version": "2.5.276",
|
|
4
4
|
"description": "Customer Support Manage App",
|
|
5
5
|
"author": "Jordan Eudy <jeudy100@gmail.com>",
|
|
6
6
|
"license": "ISC",
|
|
@@ -78,12 +78,12 @@
|
|
|
78
78
|
"@patternfly/patternfly": "6.2.1",
|
|
79
79
|
"@patternfly/react-core": "6.2.1",
|
|
80
80
|
"@patternfly/react-table": "6.2.1",
|
|
81
|
-
"@rh-support/components": "2.5.
|
|
81
|
+
"@rh-support/components": "2.5.226",
|
|
82
82
|
"@rh-support/configs": "2.0.75",
|
|
83
|
-
"@rh-support/react-context": "2.5.
|
|
83
|
+
"@rh-support/react-context": "2.5.322",
|
|
84
84
|
"@rh-support/types": "2.0.26",
|
|
85
|
-
"@rh-support/user-permissions": "2.5.
|
|
86
|
-
"@rh-support/utils": "2.5.
|
|
85
|
+
"@rh-support/user-permissions": "2.5.174",
|
|
86
|
+
"@rh-support/utils": "2.5.153",
|
|
87
87
|
"@types/react-beautiful-dnd": "^13.0.0",
|
|
88
88
|
"i18next": "^23.15.0",
|
|
89
89
|
"lodash": ">=4.17.15",
|
|
@@ -102,5 +102,5 @@
|
|
|
102
102
|
"defaults and supports es6-module",
|
|
103
103
|
"maintained node versions"
|
|
104
104
|
],
|
|
105
|
-
"gitHead": "
|
|
105
|
+
"gitHead": "7e9d99cabdfd48a98e1fda53bd6747c1797c548c"
|
|
106
106
|
}
|