@rh-support/manage 0.2.92 → 0.2.95
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/ManagePreferences/components/PreferenceSwitch.d.ts.map +1 -1
- package/lib/esm/components/ManagePreferences/components/PreferenceSwitch.js +2 -1
- package/lib/esm/components/ManagePreferences/sections/PreferencesCaseSearch.d.ts.map +1 -1
- package/lib/esm/components/ManagePreferences/sections/PreferencesCaseSearch.js +42 -39
- package/lib/esm/components/ManagePreferences/sections/PreferencesCaseView.d.ts.map +1 -1
- package/lib/esm/components/ManagePreferences/sections/PreferencesCaseView.js +47 -28
- package/package.json +7 -7
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PreferenceSwitch.d.ts","sourceRoot":"","sources":["../../../../../src/components/ManagePreferences/components/PreferenceSwitch.tsx"],"names":[],"mappings":"AAKA,UAAU,MAAM;IACZ,SAAS,EAAE,MAAM,CAAC;IAClB,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,EAAE,MAAM,CAAC;IACd,cAAc,EAAE,CAAC,OAAO,EAAE,OAAO,KAAK,OAAO,CAAC,GAAG,CAAC,CAAC;IACnD,SAAS,EAAE,OAAO,CAAC;CACtB;AAED,wBAAgB,gBAAgB,CAAC,EAAE,cAAc,EAAE,SAAS,EAAE,EAAE,EAAE,KAAK,EAAE,SAAS,EAAE,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"PreferenceSwitch.d.ts","sourceRoot":"","sources":["../../../../../src/components/ManagePreferences/components/PreferenceSwitch.tsx"],"names":[],"mappings":"AAKA,UAAU,MAAM;IACZ,SAAS,EAAE,MAAM,CAAC;IAClB,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,EAAE,MAAM,CAAC;IACd,cAAc,EAAE,CAAC,OAAO,EAAE,OAAO,KAAK,OAAO,CAAC,GAAG,CAAC,CAAC;IACnD,SAAS,EAAE,OAAO,CAAC;CACtB;AAED,wBAAgB,gBAAgB,CAAC,EAAE,cAAc,EAAE,SAAS,EAAE,EAAE,EAAE,KAAK,EAAE,SAAS,EAAE,EAAE,MAAM,eA+B3F"}
|
|
@@ -29,5 +29,6 @@ export function PreferenceSwitch({ onSwitchChange, className, id, label, isCheck
|
|
|
29
29
|
setIsSwitchLoading(false);
|
|
30
30
|
}
|
|
31
31
|
});
|
|
32
|
-
return (React.createElement(
|
|
32
|
+
return (React.createElement("div", null,
|
|
33
|
+
React.createElement(Switch, { className: className, id: id, label: t(label), isChecked: isCheckedLocal, onChange: onChangeLocal, isDisabled: isSwitchLoading })));
|
|
33
34
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PreferencesCaseSearch.d.ts","sourceRoot":"","sources":["../../../../../src/components/ManagePreferences/sections/PreferencesCaseSearch.tsx"],"names":[],"mappings":"AAYA,UAAU,MAAM;CAAG;AAEnB,wBAAgB,qBAAqB,CAAC,KAAK,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"PreferencesCaseSearch.d.ts","sourceRoot":"","sources":["../../../../../src/components/ManagePreferences/sections/PreferencesCaseSearch.tsx"],"names":[],"mappings":"AAYA,UAAU,MAAM;CAAG;AAEnB,wBAAgB,qBAAqB,CAAC,KAAK,EAAE,MAAM,eA0GlD"}
|
|
@@ -10,17 +10,15 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
10
10
|
import { Card, CardBody, CardHeader, SelectOption } from '@patternfly/react-core';
|
|
11
11
|
import { ToastNotification } from '@rh-support/components';
|
|
12
12
|
import { UserPreferencesKeys } from '@rh-support/react-context';
|
|
13
|
+
import { isEmpty } from 'lodash';
|
|
13
14
|
import find from 'lodash/find';
|
|
14
15
|
import React, { useEffect, useState } from 'react';
|
|
15
16
|
import { Trans, useTranslation } from 'react-i18next';
|
|
16
17
|
import { useUserPreferences } from '../../../hooks/useUserPreferences';
|
|
17
18
|
import { PreferenceSelect } from '../components/PreferenceSelect';
|
|
18
|
-
import { PreferenceSwitch } from '../components/PreferenceSwitch';
|
|
19
19
|
export function PreferencesCaseSearch(props) {
|
|
20
20
|
const { t } = useTranslation();
|
|
21
|
-
const { getAutoRestoreSavedSearchPreference, updateAutoRestoreSavedSearchPreference, getAutoRestoreLastSearchPreference, updateAutoRestoreLastSearchPreference,
|
|
22
|
-
const [isAutoRestoreChecked, setIsAutoRestoreChecked] = useState(false);
|
|
23
|
-
const [isAutoSaveChecked, setIsAutoSaveChecked] = useState(false);
|
|
21
|
+
const { getAutoRestoreSavedSearchPreference, updateAutoRestoreSavedSearchPreference, getAutoRestoreLastSearchPreference, updateAutoRestoreLastSearchPreference, hydraUserPreferences, } = useUserPreferences();
|
|
24
22
|
const [bookmarkedSearches, setBookmarkedSearches] = useState([]);
|
|
25
23
|
const [originalSavedSearch, setOriginalSavedSearch] = useState('');
|
|
26
24
|
const parseToBoolean = (value) => {
|
|
@@ -36,47 +34,55 @@ export function PreferencesCaseSearch(props) {
|
|
|
36
34
|
}, [hydraUserPreferences.data]);
|
|
37
35
|
const userOriginalSavedSearch = () => __awaiter(this, void 0, void 0, function* () {
|
|
38
36
|
try {
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
ToastNotification.addWarningMessage(t('Failed to fetch original preference'));
|
|
44
|
-
}
|
|
45
|
-
});
|
|
46
|
-
const userOriginalAutoRestoreLastSearch = () => __awaiter(this, void 0, void 0, function* () {
|
|
47
|
-
try {
|
|
37
|
+
let originalSearch = yield getAutoRestoreSavedSearchPreference();
|
|
38
|
+
if (isEmpty(originalSearch)) {
|
|
39
|
+
originalSearch = emptySearchPlaceholderText;
|
|
40
|
+
}
|
|
48
41
|
const originalLastSearchPref = yield getAutoRestoreLastSearchPreference();
|
|
49
42
|
const parsedLastSearchPref = parseToBoolean(originalLastSearchPref);
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
const userOriginalAutoSaveColumns = () => __awaiter(this, void 0, void 0, function* () {
|
|
57
|
-
try {
|
|
58
|
-
const originalColumnsPref = yield getAutoSaveSelectedColumnsPreference();
|
|
59
|
-
const parsedColumnPref = parseToBoolean(originalColumnsPref);
|
|
60
|
-
setIsAutoSaveChecked(parsedColumnPref);
|
|
43
|
+
if (parsedLastSearchPref) {
|
|
44
|
+
setOriginalSavedSearch(restoreLatestText);
|
|
45
|
+
}
|
|
46
|
+
else {
|
|
47
|
+
setOriginalSavedSearch(originalSearch);
|
|
48
|
+
}
|
|
61
49
|
}
|
|
62
|
-
catch (
|
|
50
|
+
catch (_a) {
|
|
63
51
|
ToastNotification.addWarningMessage(t('Failed to fetch original preference'));
|
|
64
52
|
}
|
|
65
53
|
});
|
|
66
54
|
useEffect(() => {
|
|
67
55
|
userOriginalSavedSearch();
|
|
68
|
-
userOriginalAutoRestoreLastSearch();
|
|
69
|
-
userOriginalAutoSaveColumns();
|
|
70
56
|
});
|
|
71
57
|
const onSelect = (event, selection, isPlaceholder) => __awaiter(this, void 0, void 0, function* () {
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
58
|
+
if (selection !== restoreLatestText) {
|
|
59
|
+
try {
|
|
60
|
+
yield updateAutoRestoreSavedSearchPreference(selection);
|
|
61
|
+
yield updateAutoRestoreLastSearchPreference(false);
|
|
62
|
+
}
|
|
63
|
+
catch (error) {
|
|
64
|
+
console.log(error);
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
else if (selection === restoreLatestText) {
|
|
68
|
+
try {
|
|
69
|
+
yield updateAutoRestoreLastSearchPreference(true);
|
|
70
|
+
yield updateAutoRestoreSavedSearchPreference(restoreLatestText);
|
|
71
|
+
}
|
|
72
|
+
catch (error) {
|
|
73
|
+
console.log(error);
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
}); // if the getAutoRestoreLastSearchPreference is false, then we will use this check in bookmarkedsearchesselector to not use the getAutoRestoresavedSearchPref.
|
|
77
|
+
const restoreLatestText = 'Restore latest';
|
|
78
|
+
const emptySearchPlaceholderText = 'Select an option';
|
|
79
|
+
let emptyPlaceHolderOption = React.createElement(SelectOption, { key: 0, value: emptySearchPlaceholderText });
|
|
80
|
+
const appendRestoreLatest = () => {
|
|
81
|
+
let selectRestoreOptions = bookmarkedSearches.map((option, index) => (React.createElement(SelectOption, { key: 1 + index, value: option })));
|
|
82
|
+
selectRestoreOptions.push(React.createElement(SelectOption, { key: bookmarkedSearches.length + 1, value: restoreLatestText }));
|
|
83
|
+
let emptyPlaceHolderList = [emptyPlaceHolderOption].concat(selectRestoreOptions);
|
|
84
|
+
return emptyPlaceHolderList;
|
|
85
|
+
}; // we are now adding "restore last" as the last of the array and "select a saved search" as the first option.
|
|
80
86
|
const titleId = 'auto-restore-preference-dropdown';
|
|
81
87
|
return (React.createElement(Card, { className: "preference-card" },
|
|
82
88
|
React.createElement(CardHeader, null,
|
|
@@ -85,8 +91,5 @@ export function PreferencesCaseSearch(props) {
|
|
|
85
91
|
React.createElement(CardBody, null,
|
|
86
92
|
React.createElement("form", null,
|
|
87
93
|
React.createElement("div", { className: "form-group" },
|
|
88
|
-
React.createElement(PreferenceSelect, { label: "Auto-restore my saved search", id: titleId, onSelect: onSelect, selections: originalSavedSearch },
|
|
89
|
-
React.createElement("div", { className: "form-group" },
|
|
90
|
-
React.createElement(PreferenceSwitch, { className: "preference-page-switches", id: "auto-restore-last-search-switch", label: "Auto-restore last search", onSwitchChange: onAutoRestoreSwitchChange, isChecked: isAutoRestoreChecked }),
|
|
91
|
-
React.createElement(PreferenceSwitch, { className: "preference-page-switches", id: "auto-save-columns-switch", label: "Auto-save selected table columns", onSwitchChange: onAutoSaveSwitchChange, isChecked: isAutoSaveChecked }))))));
|
|
94
|
+
React.createElement(PreferenceSelect, { label: "Auto-restore my saved search", id: titleId, onSelect: onSelect, selections: originalSavedSearch }, appendRestoreLatest()))))));
|
|
92
95
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PreferencesCaseView.d.ts","sourceRoot":"","sources":["../../../../../src/components/ManagePreferences/sections/PreferencesCaseView.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"PreferencesCaseView.d.ts","sourceRoot":"","sources":["../../../../../src/components/ManagePreferences/sections/PreferencesCaseView.tsx"],"names":[],"mappings":"AAcA,UAAU,MAAM;CAAG;AAEnB,wBAAgB,mBAAmB,CAAC,KAAK,EAAE,MAAM,eAgKhD"}
|
|
@@ -7,17 +7,21 @@ 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 { accounts } from '@cee-eng/hydrajs';
|
|
10
11
|
import { Card, CardBody, CardHeader, SelectOption, Spinner, TextArea } from '@patternfly/react-core';
|
|
11
|
-
import { EditorMode, ToastNotification } from '@rh-support/components';
|
|
12
|
+
import { EditorMode, ToastNotification, useFetch } from '@rh-support/components';
|
|
13
|
+
import { GlobalMetadataStateContext } from '@rh-support/react-context';
|
|
14
|
+
import { ability, CaseListFields, resourceActions, resources } from '@rh-support/user-permissions';
|
|
15
|
+
import { isEmpty } from 'lodash';
|
|
12
16
|
import debounce from 'lodash/debounce';
|
|
13
|
-
import React, { useEffect, useState } from 'react';
|
|
17
|
+
import React, { useContext, useEffect, useState } from 'react';
|
|
14
18
|
import { Trans, useTranslation } from 'react-i18next';
|
|
15
19
|
import { useUserPreferences } from '../../../hooks/useUserPreferences';
|
|
16
20
|
import { PreferenceSelect } from '../components/PreferenceSelect';
|
|
17
21
|
import { PreferenceSwitch } from '../components/PreferenceSwitch';
|
|
18
22
|
export function PreferencesCaseView(props) {
|
|
19
23
|
const { t } = useTranslation();
|
|
20
|
-
const { updateCommentType, getCommentTypeFromPreference, getCommentSignature, updateCommentSignature
|
|
24
|
+
const { updateCommentType, getCommentTypeFromPreference, getCommentSignature, updateCommentSignature } = useUserPreferences();
|
|
21
25
|
const [isSharingHostNames, setIsSharingHostNames] = useState(false);
|
|
22
26
|
const [localCommentSignature, setLocalCommentSignature] = useState('');
|
|
23
27
|
const [originalCommentType, setOriginalCommentType] = useState('');
|
|
@@ -25,25 +29,12 @@ export function PreferencesCaseView(props) {
|
|
|
25
29
|
const [commentValidated, setCommentValidated] = useState('default');
|
|
26
30
|
const [isCommentSignatureLoading, setIsCommentSignatureLoading] = useState(false);
|
|
27
31
|
const commentTypes = [EditorMode.PLAIN, EditorMode.MARKDOWN];
|
|
28
|
-
const parseToBoolean = (value) => {
|
|
29
|
-
return value === 'true';
|
|
30
|
-
};
|
|
31
|
-
const userOriginalShareHostNames = () => __awaiter(this, void 0, void 0, function* () {
|
|
32
|
-
try {
|
|
33
|
-
const retrievedShareHostNames = yield getShareHostNames();
|
|
34
|
-
const parsedShareHostNames = parseToBoolean(retrievedShareHostNames);
|
|
35
|
-
setIsSharingHostNames(parsedShareHostNames);
|
|
36
|
-
}
|
|
37
|
-
catch (_a) {
|
|
38
|
-
ToastNotification.addWarningMessage(t('Failed to fetch original preference'));
|
|
39
|
-
}
|
|
40
|
-
});
|
|
41
32
|
const userOriginalCommentType = () => __awaiter(this, void 0, void 0, function* () {
|
|
42
33
|
try {
|
|
43
34
|
const retrievedComment = yield getCommentTypeFromPreference();
|
|
44
35
|
setOriginalCommentType(retrievedComment);
|
|
45
36
|
}
|
|
46
|
-
catch (
|
|
37
|
+
catch (_a) {
|
|
47
38
|
ToastNotification.addWarningMessage(t('Failed to fetch original preference'));
|
|
48
39
|
}
|
|
49
40
|
});
|
|
@@ -52,14 +43,13 @@ export function PreferencesCaseView(props) {
|
|
|
52
43
|
const retrievedSignature = yield getCommentSignature();
|
|
53
44
|
setOriginalCommentSignature(retrievedSignature);
|
|
54
45
|
}
|
|
55
|
-
catch (
|
|
46
|
+
catch (_b) {
|
|
56
47
|
ToastNotification.addWarningMessage(t('Failed to fetch original preference'));
|
|
57
48
|
}
|
|
58
49
|
});
|
|
59
50
|
useEffect(() => {
|
|
60
51
|
userOriginalCommentSignature();
|
|
61
52
|
userOriginalCommentType();
|
|
62
|
-
userOriginalShareHostNames();
|
|
63
53
|
});
|
|
64
54
|
useEffect(() => {
|
|
65
55
|
if (localCommentSignature === '' && commentValidated !== 'error') {
|
|
@@ -69,6 +59,7 @@ export function PreferencesCaseView(props) {
|
|
|
69
59
|
const debounceUpdateCommentSignature = debounce((value) => __awaiter(this, void 0, void 0, function* () {
|
|
70
60
|
try {
|
|
71
61
|
yield updateCommentSignature(value);
|
|
62
|
+
!isEmpty(value.trim()) && setTimeout(() => setCommentValidated('success'), 2000);
|
|
72
63
|
}
|
|
73
64
|
catch (error) {
|
|
74
65
|
setLocalCommentSignature('');
|
|
@@ -77,21 +68,49 @@ export function PreferencesCaseView(props) {
|
|
|
77
68
|
setCommentValidated('error');
|
|
78
69
|
setIsCommentSignatureLoading(false);
|
|
79
70
|
}
|
|
80
|
-
}),
|
|
71
|
+
}), 2000);
|
|
81
72
|
const handleCommentSignatureChange = (value) => __awaiter(this, void 0, void 0, function* () {
|
|
82
73
|
setIsCommentSignatureLoading(true);
|
|
83
|
-
|
|
84
|
-
|
|
74
|
+
if (isEmpty(value.trim())) {
|
|
75
|
+
yield debounceUpdateCommentSignature('');
|
|
76
|
+
}
|
|
77
|
+
!isEmpty(value.trim()) && (yield debounceUpdateCommentSignature(value));
|
|
85
78
|
setLocalCommentSignature(value);
|
|
86
79
|
setIsCommentSignatureLoading(false);
|
|
87
80
|
});
|
|
88
|
-
const onShareHostNamesSwitch = (checked) => __awaiter(this, void 0, void 0, function* () {
|
|
89
|
-
yield updateShareHostNames(checked);
|
|
90
|
-
});
|
|
91
81
|
const onSelect = (event, selection, isPlaceholder) => __awaiter(this, void 0, void 0, function* () {
|
|
92
82
|
yield updateCommentType(selection);
|
|
93
83
|
});
|
|
94
84
|
const titleId = 'default-comment-preference-select';
|
|
85
|
+
const canUseHostName = ability.can(resourceActions.PATCH, resources.CASE_CREATE, CaseListFields.HOSTNAME);
|
|
86
|
+
const { globalMetadataState: { loggedInUsersAccount }, } = useContext(GlobalMetadataStateContext);
|
|
87
|
+
const { request: fetchHostnameDefault } = useFetch(accounts.getIsSharingHostname);
|
|
88
|
+
const accountNumber = loggedInUsersAccount.data.accountNumber;
|
|
89
|
+
const { request: updateShareHostnames } = useFetch(accounts.updateIsSharingHostname);
|
|
90
|
+
useEffect(() => {
|
|
91
|
+
function userOriginalHostnameValue() {
|
|
92
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
93
|
+
try {
|
|
94
|
+
const fetchedHostnameStatus = yield fetchHostnameDefault(accountNumber);
|
|
95
|
+
setIsSharingHostNames(fetchedHostnameStatus.shareHostnameWithRHT);
|
|
96
|
+
}
|
|
97
|
+
catch (error) {
|
|
98
|
+
console.log(error);
|
|
99
|
+
}
|
|
100
|
+
});
|
|
101
|
+
}
|
|
102
|
+
userOriginalHostnameValue();
|
|
103
|
+
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
104
|
+
}, []);
|
|
105
|
+
const onShareHostNamesSwitch = () => __awaiter(this, void 0, void 0, function* () {
|
|
106
|
+
try {
|
|
107
|
+
yield updateShareHostnames(!isSharingHostNames, accountNumber);
|
|
108
|
+
setIsSharingHostNames(!isSharingHostNames);
|
|
109
|
+
}
|
|
110
|
+
catch (error) {
|
|
111
|
+
console.log(error);
|
|
112
|
+
}
|
|
113
|
+
});
|
|
95
114
|
return (React.createElement(Card, { className: "preference-card" },
|
|
96
115
|
React.createElement(CardHeader, null,
|
|
97
116
|
React.createElement("h3", null,
|
|
@@ -103,12 +122,12 @@ export function PreferencesCaseView(props) {
|
|
|
103
122
|
React.createElement("div", { className: "form-group" },
|
|
104
123
|
React.createElement("label", { htmlFor: "comment-signature-textarea" },
|
|
105
124
|
React.createElement(Trans, null, "Comment signature")),
|
|
106
|
-
React.createElement(TextArea, { value: localCommentSignature, onChange: handleCommentSignatureChange, "aria-label": "comment-signature-textarea", placeholder: originalCommentSignature, id: "comment-signature-textarea",
|
|
125
|
+
React.createElement(TextArea, { value: localCommentSignature, onChange: handleCommentSignatureChange, "aria-label": "comment-signature-textarea", placeholder: originalCommentSignature || 'Add a comment signature', id: "comment-signature-textarea",
|
|
107
126
|
// @ts-ignore
|
|
108
127
|
validated: commentValidated }),
|
|
109
128
|
isCommentSignatureLoading && React.createElement(Spinner, { size: "md" })),
|
|
110
|
-
React.createElement("div", { className: "form-group" },
|
|
129
|
+
canUseHostName && (React.createElement("div", { className: "form-group" },
|
|
111
130
|
React.createElement("label", { htmlFor: "share-hostnames-switch" },
|
|
112
131
|
React.createElement(Trans, null, "Case information")),
|
|
113
|
-
React.createElement(PreferenceSwitch, { className: "switches", id: "share-hostnames-switch", label: "Share hostnames with Red Hat", isChecked: isSharingHostNames, onSwitchChange: onShareHostNamesSwitch }))))));
|
|
132
|
+
React.createElement(PreferenceSwitch, { className: "switches", id: "share-hostnames-switch", label: "Share hostnames with Red Hat", isChecked: isSharingHostNames, onSwitchChange: onShareHostNamesSwitch })))))));
|
|
114
133
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rh-support/manage",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.95",
|
|
4
4
|
"description": "Customer Support Manage App",
|
|
5
5
|
"author": "Jordan Eudy <jeudy100@gmail.com>",
|
|
6
6
|
"homepage": "",
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"@patternfly/pfe-accordion": "1.12.3",
|
|
57
57
|
"@patternfly/pfe-collapse": "1.12.3",
|
|
58
58
|
"@patternfly/pfe-tabs": "1.12.3",
|
|
59
|
-
"@patternfly/react-core": "4.
|
|
59
|
+
"@patternfly/react-core": "4.202.16",
|
|
60
60
|
"@patternfly/react-table": "4.71.16",
|
|
61
61
|
"@rh-support/api": "0.3.9",
|
|
62
62
|
"@rh-support/components": "^0.1.3",
|
|
@@ -94,14 +94,14 @@
|
|
|
94
94
|
"@patternfly/pfe-accordion": "1.12.3",
|
|
95
95
|
"@patternfly/pfe-collapse": "1.12.3",
|
|
96
96
|
"@patternfly/pfe-tabs": "1.12.3",
|
|
97
|
-
"@patternfly/react-core": "4.
|
|
97
|
+
"@patternfly/react-core": "4.202.16",
|
|
98
98
|
"@patternfly/react-table": "4.71.16",
|
|
99
99
|
"@rh-support/api": "0.3.24",
|
|
100
|
-
"@rh-support/components": "1.1.
|
|
100
|
+
"@rh-support/components": "1.1.76",
|
|
101
101
|
"@rh-support/configs": "0.2.5",
|
|
102
|
-
"@rh-support/react-context": "0.2.
|
|
102
|
+
"@rh-support/react-context": "0.2.82",
|
|
103
103
|
"@rh-support/types": "0.2.0",
|
|
104
|
-
"@rh-support/user-permissions": "0.2.
|
|
104
|
+
"@rh-support/user-permissions": "0.2.63",
|
|
105
105
|
"@rh-support/utils": "0.2.46",
|
|
106
106
|
"@types/react-beautiful-dnd": "^13.0.0",
|
|
107
107
|
"i18next": ">=17.0.1",
|
|
@@ -113,5 +113,5 @@
|
|
|
113
113
|
"react-i18next": ">=10.11.0",
|
|
114
114
|
"react-router-dom": ">=5.1.2"
|
|
115
115
|
},
|
|
116
|
-
"gitHead": "
|
|
116
|
+
"gitHead": "1359173d6efb7ece2bd1d0760c001e053bc29893"
|
|
117
117
|
}
|