@rh-support/troubleshoot 0.2.57 → 0.2.63
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/Tabs/CaseDiscussion/PostComment.js +1 -1
- package/lib/esm/components/CaseEditView/Tabs/CaseDiscussion/VerifyCaseStatusModal/VerifyCaseStatusModal.d.ts.map +1 -1
- package/lib/esm/components/CaseEditView/Tabs/CaseDiscussion/VerifyCaseStatusModal/VerifyCaseStatusModal.js +17 -12
- package/lib/esm/components/Recommendations/ClusterRecommendationToast.d.ts.map +1 -1
- package/lib/esm/components/Recommendations/ClusterRecommendationToast.js +3 -1
- package/lib/esm/i18n/template-de.d.ts +1 -1
- package/lib/esm/i18n/template-de.js +2 -2
- package/lib/esm/i18n/template-es.d.ts +1 -1
- package/lib/esm/i18n/template-es.js +2 -2
- package/lib/esm/i18n/template-fr.d.ts +1 -1
- package/lib/esm/i18n/template-fr.js +2 -2
- package/lib/esm/i18n/template-it.d.ts +1 -1
- package/lib/esm/i18n/template-it.js +2 -2
- package/lib/esm/i18n/template-jp.d.ts +3 -3
- package/lib/esm/i18n/template-jp.d.ts.map +1 -1
- package/lib/esm/i18n/template-jp.js +4 -4
- package/lib/esm/i18n/template-ko.d.ts +1 -1
- package/lib/esm/i18n/template-ko.d.ts.map +1 -1
- package/lib/esm/i18n/template-ko.js +2 -2
- package/lib/esm/i18n/template-pt.d.ts +1 -1
- package/lib/esm/i18n/template-pt.js +2 -2
- package/lib/esm/i18n/template-ru.d.ts +1 -1
- package/lib/esm/i18n/template-ru.js +2 -2
- package/lib/esm/i18n/template-zh.d.ts +1 -1
- package/lib/esm/i18n/template-zh.d.ts.map +1 -1
- package/lib/esm/i18n/template-zh.js +2 -2
- package/package.json +8 -8
|
@@ -276,7 +276,7 @@ export function PostComment(props) {
|
|
|
276
276
|
onClipboardPaste,
|
|
277
277
|
} }),
|
|
278
278
|
isProcessing ? (React.createElement(LoadingIndicator, { isInline: true, size: "sm" })) : (React.createElement("div", { className: "pf-l-flex post-comment-btn-group push-top-narrow" },
|
|
279
|
-
isModalOpen &&
|
|
279
|
+
isModalOpen && loggedInUserRights.data.isInternal() && isPublic && (React.createElement(VerifyCaseStatusModal, { onClose: onCancel, onConfirm: onConfirm, isUpdating: isPostingComment, caseNumber: props.caseNumber })),
|
|
280
280
|
React.createElement(Button, { "data-tracking-id": "postcomment-submit-button", type: "button", variant: ButtonVariant.primary, onClick: loggedInUser.data.isInternal && isPublic ? onBtnClick : isNotInternalConfirm, isDisabled: isPostCommentDisabled, className: "postcomment-submit" },
|
|
281
281
|
React.createElement(Trans, null, "Submit")),
|
|
282
282
|
canAddAttachments &&
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"VerifyCaseStatusModal.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/CaseEditView/Tabs/CaseDiscussion/VerifyCaseStatusModal/VerifyCaseStatusModal.tsx"],"names":[],"mappings":"AAiBA,UAAU,MAAM;IACZ,SAAS,EAAE,CAAC,WAAW,CAAC,EAAE,MAAM,KAAK,IAAI,CAAC;IAC1C,OAAO,EAAE,MAAM,IAAI,CAAC;IACpB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,UAAU,EAAE,OAAO,CAAC;CACvB;AAED,wBAAgB,qBAAqB,CAAC,KAAK,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"VerifyCaseStatusModal.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/CaseEditView/Tabs/CaseDiscussion/VerifyCaseStatusModal/VerifyCaseStatusModal.tsx"],"names":[],"mappings":"AAiBA,UAAU,MAAM;IACZ,SAAS,EAAE,CAAC,WAAW,CAAC,EAAE,MAAM,KAAK,IAAI,CAAC;IAC1C,OAAO,EAAE,MAAM,IAAI,CAAC;IACpB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,UAAU,EAAE,OAAO,CAAC;CACvB;AAED,wBAAgB,qBAAqB,CAAC,KAAK,EAAE,MAAM,eAqIlD"}
|
|
@@ -53,24 +53,29 @@ export function VerifyCaseStatusModal(props) {
|
|
|
53
53
|
const { isCaseUpdating } = caseState;
|
|
54
54
|
const canEditCase = useCanEditCase();
|
|
55
55
|
const caseDispatch = useCaseDispatch();
|
|
56
|
-
const [statusChange, setStatusChange] = useState();
|
|
56
|
+
const [statusChange, setStatusChange] = useState(status);
|
|
57
57
|
const [isVerifyCaseStatusLoading, setIsVerifyCaseStatusLoading] = useState(false);
|
|
58
58
|
const onSubmit = () => __awaiter(this, void 0, void 0, function* () {
|
|
59
|
+
yield props.onConfirm();
|
|
59
60
|
yield updateStatusState(statusChange);
|
|
60
61
|
setIsVerifyCaseStatusLoading(true);
|
|
61
|
-
props.onConfirm();
|
|
62
62
|
});
|
|
63
63
|
const updateStatusState = (statusVal, onStatusUpdate = null) => __awaiter(this, void 0, void 0, function* () {
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
64
|
+
if (status !== statusVal) {
|
|
65
|
+
setStatusUpdating(caseOverviewDispatch, true);
|
|
66
|
+
try {
|
|
67
|
+
yield updateCaseDetails(caseDispatch, props.caseNumber, { status: statusVal });
|
|
68
|
+
setStatusUpdating(caseOverviewDispatch, false);
|
|
69
|
+
onStatusUpdate && (yield onStatusUpdate());
|
|
70
|
+
ToastNotification.addSuccessMessage(t('Status has been successfully updated'));
|
|
71
|
+
}
|
|
72
|
+
catch (e) {
|
|
73
|
+
setStatusUpdating(caseOverviewDispatch, false);
|
|
74
|
+
ToastNotification.addDangerMessage(t('Status failed to update'));
|
|
75
|
+
}
|
|
70
76
|
}
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
ToastNotification.addDangerMessage(t('Status failed to update'));
|
|
77
|
+
else {
|
|
78
|
+
return;
|
|
74
79
|
}
|
|
75
80
|
});
|
|
76
81
|
const onStatusChange = (event, newStatus) => __awaiter(this, void 0, void 0, function* () {
|
|
@@ -90,6 +95,6 @@ export function VerifyCaseStatusModal(props) {
|
|
|
90
95
|
React.createElement("span", { className: "form-required", "aria-hidden": true }, "*")),
|
|
91
96
|
React.createElement(Select, { "aria-label": t(status), id: "verify-case-status", selections: statusChange, onSelect: onStatusChange, isOpen: showDropdown, isDisabled: !canManageCase ||
|
|
92
97
|
caseOverviewState.allCaseStatuses.isFetching ||
|
|
93
|
-
(caseOverviewState.caseStatusUpdating && isCaseUpdating), menuAppendTo: document.body, validated: !status ? 'error' : 'default', placeholderText: t(status), onToggle: onDropdownToggle }, caseOverviewState.allCaseStatuses.data.map((option, index) => (React.createElement(SelectOption, { key: index, value: option },
|
|
98
|
+
(caseOverviewState.caseStatusUpdating && isCaseUpdating), menuAppendTo: document.body, validated: !status ? 'error' : 'default', placeholderText: t(status), onToggle: onDropdownToggle }, caseOverviewState.allCaseStatuses.data.map((option, index) => (React.createElement(SelectOption, { key: index, value: option, isDisabled: option === status },
|
|
94
99
|
React.createElement(Trans, null, option)))))));
|
|
95
100
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ClusterRecommendationToast.d.ts","sourceRoot":"","sources":["../../../../src/components/Recommendations/ClusterRecommendationToast.tsx"],"names":[],"mappings":"AAIA,OAAc,EAAE,EAAE,EAAmC,MAAM,OAAO,CAAC;AAUnE,UAAU,MAAM;CAAG;AAEnB,QAAA,MAAM,0BAA0B,EAAE,EAAE,CAAC,MAAM,
|
|
1
|
+
{"version":3,"file":"ClusterRecommendationToast.d.ts","sourceRoot":"","sources":["../../../../src/components/Recommendations/ClusterRecommendationToast.tsx"],"names":[],"mappings":"AAIA,OAAc,EAAE,EAAE,EAAmC,MAAM,OAAO,CAAC;AAUnE,UAAU,MAAM;CAAG;AAEnB,QAAA,MAAM,0BAA0B,EAAE,EAAE,CAAC,MAAM,CAwD1C,CAAC;AAEF,eAAe,0BAA0B,CAAC"}
|
|
@@ -26,7 +26,9 @@ const ClusterRecommendationToast = () => {
|
|
|
26
26
|
};
|
|
27
27
|
// To prevent toast to reopen even after user close it we need to check cluster id
|
|
28
28
|
useEffect(() => {
|
|
29
|
-
if (!isEmpty(openshiftClusterID) &&
|
|
29
|
+
if (!isEmpty(openshiftClusterID) &&
|
|
30
|
+
previousOpenShiftClusterId !== openshiftClusterID &&
|
|
31
|
+
clusterRecommendations.data.length)
|
|
30
32
|
setToastVisibility(true);
|
|
31
33
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
32
34
|
}, [clusterRecommendations.data]);
|
|
@@ -714,7 +714,7 @@ declare const _default: {
|
|
|
714
714
|
'This case has been added to our queue! As a reminder, your initial response time is': string;
|
|
715
715
|
'and ongoing response time is': string;
|
|
716
716
|
'Add, edit, or remove top content solutions and categories. You can also create a new set of top content recommendations for specific versions.': string;
|
|
717
|
-
|
|
717
|
+
i18IRDashboard: string;
|
|
718
718
|
'No top content found': string;
|
|
719
719
|
'Please select a product and version to edit': string;
|
|
720
720
|
'Please select a version to edit': string;
|
|
@@ -693,7 +693,7 @@ export default {
|
|
|
693
693
|
'Step 3': 'Schritt 3',
|
|
694
694
|
'Step 4': 'Schritt 4',
|
|
695
695
|
'Step 5': 'Schritt 5',
|
|
696
|
-
i18nAccountBillingSubscription: 'Sie haben ein Problem mit Ihrem Konto, Ihrer Rechnung oder Ihrem Abonnement? Wenden Sie sich an den Kundenservice
|
|
696
|
+
i18nAccountBillingSubscription: 'Sie haben ein Problem mit Ihrem Konto, Ihrer Rechnung oder Ihrem Abonnement? Wenden Sie sich an den <2>Kundenservice</2>, um Unterstützung zu erhalten.',
|
|
697
697
|
'Critical solutions have been triggered': 'Kritische Lösungen wurden ausgelöst',
|
|
698
698
|
'Critical solutions for your system': 'Kritische Lösungen für Ihr System',
|
|
699
699
|
'Solutions have been triggered for you based on file upload or common issues that currently have high visibility.': 'Basierend auf der hochgeladenen Datei oder häufigen Problemen, die derzeit eine hohe Sichtbarkeit haben, wurden Lösungen für Sie ausgelöst.',
|
|
@@ -714,7 +714,7 @@ export default {
|
|
|
714
714
|
'This case has been added to our queue! As a reminder, your initial response time is': 'Dieser Fall wurde in unsere Warteschlange aufgenommen. Zur Erinnerung: Ihre erste Reaktionszeit beträgt',
|
|
715
715
|
'and ongoing response time is': 'und die laufende Reaktionszeit',
|
|
716
716
|
'Add, edit, or remove top content solutions and categories. You can also create a new set of top content recommendations for specific versions.': 'Sie können Top-Inhaltslösungen und Kategorien hinzufügen, bearbeiten oder entfernen. Sie können auch einen neuen Satz von Top-Inhaltsempfehlungen für bestimmte Versionen erstellen.',
|
|
717
|
-
|
|
717
|
+
i18IRDashboard: 'Sie können das <2>IR-Dashboard</2> für Vorschläge und zur Überprüfung der Leistung der vorhandenen Inhalte verwenden.',
|
|
718
718
|
'No top content found': 'Keine Top-Inhalte gefunden',
|
|
719
719
|
'Please select a product and version to edit': 'Wählen Sie ein Produkt und eine Version zum Bearbeiten aus.',
|
|
720
720
|
'Please select a version to edit': 'Wählen Sie eine Version zum Bearbeiten aus.',
|
|
@@ -716,7 +716,7 @@ declare const _default: {
|
|
|
716
716
|
'This case has been added to our queue! As a reminder, your initial response time is': string;
|
|
717
717
|
'and ongoing response time is': string;
|
|
718
718
|
'Add, edit, or remove top content solutions and categories. You can also create a new set of top content recommendations for specific versions.': string;
|
|
719
|
-
|
|
719
|
+
i18IRDashboard: string;
|
|
720
720
|
'No top content found': string;
|
|
721
721
|
'Please select a product and version to edit': string;
|
|
722
722
|
'Please select a version to edit': string;
|
|
@@ -695,7 +695,7 @@ export default {
|
|
|
695
695
|
'Step 3': 'Paso 3',
|
|
696
696
|
'Step 4': 'Paso 4',
|
|
697
697
|
'Step 5': 'Paso 5',
|
|
698
|
-
i18nAccountBillingSubscription: '¿Tiene algún problema con la cuenta, la facturación o la suscripción? Comuníquese con el servicio de atención al cliente para obtener ayuda.',
|
|
698
|
+
i18nAccountBillingSubscription: '¿Tiene algún problema con la cuenta, la facturación o la suscripción? Comuníquese con <2>el servicio de atención al cliente</2> para obtener ayuda.',
|
|
699
699
|
'Critical solutions have been triggered': 'Se han activado las soluciones críticas.',
|
|
700
700
|
'Critical solutions for your system': 'Soluciones críticas para su sistema',
|
|
701
701
|
'Solutions have been triggered for you based on file upload or common issues that currently have high visibility.': 'Se activaron las soluciones para usted en función de la carga de archivos o los problemas comunes que actualmente tienen una alta visibilidad.',
|
|
@@ -716,7 +716,7 @@ export default {
|
|
|
716
716
|
'This case has been added to our queue! As a reminder, your initial response time is': 'Este caso se ha agregado a nuestra cola. Como recordatorio, su tiempo de respuesta inicial es',
|
|
717
717
|
'and ongoing response time is': 'y el tiempo de respuesta en curso es',
|
|
718
718
|
'Add, edit, or remove top content solutions and categories. You can also create a new set of top content recommendations for specific versions.': 'Agregue, edite o borre las soluciones y categorías de contenido principal. También puede crear un nuevo conjunto de recomendaciones de contenido principal para versiones específicas.',
|
|
719
|
-
|
|
719
|
+
i18IRDashboard: 'Puede usar <2>el panel de IR</2> para obtener sugerencias y para comprobar el rendimiento del contenido existente.',
|
|
720
720
|
'No top content found': 'No se encontró ningún contenido principal',
|
|
721
721
|
'Please select a product and version to edit': 'Seleccione un producto y una versión para editar',
|
|
722
722
|
'Please select a version to edit': 'Seleccione una versión para editar',
|
|
@@ -715,7 +715,7 @@ declare const _default: {
|
|
|
715
715
|
'This case has been added to our queue! As a reminder, your initial response time is': string;
|
|
716
716
|
'and ongoing response time is': string;
|
|
717
717
|
'Add, edit, or remove top content solutions and categories. You can also create a new set of top content recommendations for specific versions.': string;
|
|
718
|
-
|
|
718
|
+
i18IRDashboard: string;
|
|
719
719
|
'No top content found': string;
|
|
720
720
|
'Please select a product and version to edit': string;
|
|
721
721
|
'Please select a version to edit': string;
|
|
@@ -694,7 +694,7 @@ export default {
|
|
|
694
694
|
'Step 3': 'Étape 3',
|
|
695
695
|
'Step 4': 'Étape 4',
|
|
696
696
|
'Step 5': 'Étape 5',
|
|
697
|
-
i18nAccountBillingSubscription: "Vous avez un problème de compte, de facturation ou d'abonnement ? Contactez le service clientèle pour obtenir de l'aide.",
|
|
697
|
+
i18nAccountBillingSubscription: "Vous avez un problème de compte, de facturation ou d'abonnement ? Contactez <2>le service clientèle</2> pour obtenir de l'aide.",
|
|
698
698
|
'Critical solutions have been triggered': 'Des solutions essentielles ont été trouvées',
|
|
699
699
|
'Critical solutions for your system': 'Solutions essentielles pour votre système',
|
|
700
700
|
'Solutions have been triggered for you based on file upload or common issues that currently have high visibility.': 'Des solutions ont été déclenchées pour vous, en considération des téléchargements de fichiers ou de problèmes communs qui ont actuellement une grande visibilité.',
|
|
@@ -715,7 +715,7 @@ export default {
|
|
|
715
715
|
'This case has been added to our queue! As a reminder, your initial response time is': "Ce cas a été ajouté à notre liste d'attente ! Pour rappel, votre délai de réponse initial est de",
|
|
716
716
|
'and ongoing response time is': 'et le temps de réponse en cours est de',
|
|
717
717
|
'Add, edit, or remove top content solutions and categories. You can also create a new set of top content recommendations for specific versions.': 'Ajouter, modifier ou supprimer des solutions et des catégories de contenu de premier plan. Vous pouvez également créer un nouvel ensemble de recommandations de contenus de premier plan pour des versions spécifiques.',
|
|
718
|
-
|
|
718
|
+
i18IRDashboard: 'Vous pouvez utiliser <2>le tableau de bord IR</2> pour faire des suggestions et vérifier les performances du contenu existant.',
|
|
719
719
|
'No top content found': "Aucun contenu de premier plan n'a été trouvé",
|
|
720
720
|
'Please select a product and version to edit': 'Veuillez sélectionner un produit et une version à modifier',
|
|
721
721
|
'Please select a version to edit': 'Veuillez sélectionner une version à modifier',
|
|
@@ -715,7 +715,7 @@ declare const _default: {
|
|
|
715
715
|
'This case has been added to our queue! As a reminder, your initial response time is': string;
|
|
716
716
|
'and ongoing response time is': string;
|
|
717
717
|
'Add, edit, or remove top content solutions and categories. You can also create a new set of top content recommendations for specific versions.': string;
|
|
718
|
-
|
|
718
|
+
i18IRDashboard: string;
|
|
719
719
|
'No top content found': string;
|
|
720
720
|
'Please select a product and version to edit': string;
|
|
721
721
|
'Please select a version to edit': string;
|
|
@@ -694,7 +694,7 @@ export default {
|
|
|
694
694
|
'Step 3': 'Passaggio 3',
|
|
695
695
|
'Step 4': 'Passaggio 4',
|
|
696
696
|
'Step 5': 'Passaggio 5',
|
|
697
|
-
i18nAccountBillingSubscription: 'Hai un problema di account, fatturazione o abbonamento? Contatta il servizio clienti per assistenza.',
|
|
697
|
+
i18nAccountBillingSubscription: 'Hai un problema di account, fatturazione o abbonamento? Contatta il <2>servizio clienti</2> per assistenza.',
|
|
698
698
|
'Critical solutions have been triggered': 'Soluzioni critiche attivate',
|
|
699
699
|
'Critical solutions for your system': 'Soluzioni critiche per il tuo sistema',
|
|
700
700
|
'Solutions have been triggered for you based on file upload or common issues that currently have high visibility.': "Le soluzioni sono state attivate per te in base al caricamento del file o a problemi comuni che attualmente hanno un'alta visibilità.",
|
|
@@ -715,7 +715,7 @@ export default {
|
|
|
715
715
|
'This case has been added to our queue! As a reminder, your initial response time is': 'Questo caso è stato aggiunto alla nostra coda. Come promemoria, il tuo tempo di risposta iniziale è',
|
|
716
716
|
'and ongoing response time is': 'e il tempo di risposta in corso è',
|
|
717
717
|
'Add, edit, or remove top content solutions and categories. You can also create a new set of top content recommendations for specific versions.': 'Aggiungi, modifica o rimuovi le soluzioni e le categorie di contenuto top. Puoi anche creare una nuova serie di consigli sui contenuti top per versioni specifiche.',
|
|
718
|
-
|
|
718
|
+
i18IRDashboard: 'Puoi utilizzare il <2>Dashboard IR</2> per suggerimenti e per verificare le prestazioni dei contenuti esistenti.',
|
|
719
719
|
'No top content found': 'Nessun contenuto top trovato',
|
|
720
720
|
'Please select a product and version to edit': 'Seleziona un prodotto e una versione da modificare',
|
|
721
721
|
'Please select a version to edit': 'Seleziona una versione da modificare',
|
|
@@ -709,7 +709,7 @@ declare const _default: {
|
|
|
709
709
|
'This case has been added to our queue! As a reminder, your initial response time is': string;
|
|
710
710
|
'and ongoing response time is': string;
|
|
711
711
|
'Add, edit, or remove top content solutions and categories. You can also create a new set of top content recommendations for specific versions.': string;
|
|
712
|
-
|
|
712
|
+
i18IRDashboard: string;
|
|
713
713
|
'No top content found': string;
|
|
714
714
|
'Please select a product and version to edit': string;
|
|
715
715
|
'Please select a version to edit': string;
|
|
@@ -717,11 +717,11 @@ declare const _default: {
|
|
|
717
717
|
'Arrange Section': string;
|
|
718
718
|
Advanced: string;
|
|
719
719
|
Basic: string;
|
|
720
|
-
|
|
720
|
+
i18nRequestControl: string;
|
|
721
721
|
'Search for an account to be bookmarked': string;
|
|
722
722
|
'Type to search...': string;
|
|
723
723
|
'Search for an account or group': string;
|
|
724
|
-
|
|
724
|
+
i18AddEditRemoveBookmark: string;
|
|
725
725
|
'4 business hours and ongoing response time is 8 business hours or as agreed': string;
|
|
726
726
|
'This file type cannot be analyzed.': string;
|
|
727
727
|
'Please address the errors to proceed': string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"template-jp.d.ts","sourceRoot":"","sources":["../../../src/i18n/template-jp.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,
|
|
1
|
+
{"version":3,"file":"template-jp.d.ts","sourceRoot":"","sources":["../../../src/i18n/template-jp.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBAm0BE"}
|
|
@@ -688,7 +688,7 @@ export default {
|
|
|
688
688
|
'Step 3': 'ステップ 3',
|
|
689
689
|
'Step 4': 'ステップ 4',
|
|
690
690
|
'Step 5': 'ステップ 5',
|
|
691
|
-
i18nAccountBillingSubscription: 'アカウント、請求、またはサブスクリプション関連で問題がありますか?
|
|
691
|
+
i18nAccountBillingSubscription: 'アカウント、請求、またはサブスクリプション関連で問題がありますか? サポートを受けるには、<2>カスタマーサービスにお問い合わせください。</2>',
|
|
692
692
|
'Critical solutions have been triggered': '重要なソリューションがトリガーされました',
|
|
693
693
|
'Critical solutions for your system': 'システムの重要なソリューション',
|
|
694
694
|
'Solutions have been triggered for you based on file upload or common issues that currently have high visibility.': 'ファイルアップロードまたは、現在、参照回数の多い一般的な問題をもとに、お客様向けのソルーションがトリガーされました',
|
|
@@ -709,7 +709,7 @@ export default {
|
|
|
709
709
|
'This case has been added to our queue! As a reminder, your initial response time is': 'このケースがキューに追加されました! 初回の応答時間:',
|
|
710
710
|
'and ongoing response time is': 'またその後の応答時間:',
|
|
711
711
|
'Add, edit, or remove top content solutions and categories. You can also create a new set of top content recommendations for specific versions.': 'トップコンテンツソリューションおよびカテゴリーの追加、編集、または削除を行います。また、特定のバージョンにトップコンテンツの推奨事項を新規作成することもできます。',
|
|
712
|
-
|
|
712
|
+
i18IRDashboard: '推奨事項や、既存のコンテンツのパフォーマンス確認に、<2>IR Dashboard</2> を使用できます。',
|
|
713
713
|
'No top content found': 'トップコンテンツが見つかりません',
|
|
714
714
|
'Please select a product and version to edit': '編集する製品およびバージョンを選択してください',
|
|
715
715
|
'Please select a version to edit': '編集するバージョンを選択してください',
|
|
@@ -717,11 +717,11 @@ export default {
|
|
|
717
717
|
'Arrange Section': 'セクションの整理',
|
|
718
718
|
Advanced: '詳細検索',
|
|
719
719
|
Basic: '基本検索',
|
|
720
|
-
|
|
720
|
+
i18nRequestControl: '特定グループのケースに対するアクセス管理権限を依頼するには、テクニカルアカウントマネージャーか、<2>Red Hat テクニカルサポ</2>ートまでお問い合わせください。',
|
|
721
721
|
'Search for an account to be bookmarked': 'ブックマークするアカウントの検索',
|
|
722
722
|
'Type to search...': '入力して検索を開始する...',
|
|
723
723
|
'Search for an account or group': 'アカウントまたはグループの検索',
|
|
724
|
-
|
|
724
|
+
i18AddEditRemoveBookmark: 'ブックマークを追加、編集または削除して、ポータルでの検索方法をカスタマイズします。',
|
|
725
725
|
'4 business hours and ongoing response time is 8 business hours or as agreed': '4 時間。その後の応答時間は 8 時間または合意の時間になります。',
|
|
726
726
|
'This file type cannot be analyzed.': 'この種類のファイルは解析できません。',
|
|
727
727
|
'Please address the errors to proceed': '続行するには、エラーに対処してください',
|
|
@@ -716,7 +716,7 @@ declare const _default: {
|
|
|
716
716
|
'This case has been added to our queue! As a reminder, your initial response time is': string;
|
|
717
717
|
'and ongoing response time is': string;
|
|
718
718
|
'Add, edit, or remove top content solutions and categories. You can also create a new set of top content recommendations for specific versions.': string;
|
|
719
|
-
|
|
719
|
+
i18IRDashboard: string;
|
|
720
720
|
'No top content found': string;
|
|
721
721
|
'Please select a product and version to edit': string;
|
|
722
722
|
'Please select a version to edit': string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"template-ko.d.ts","sourceRoot":"","sources":["../../../src/i18n/template-ko.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,
|
|
1
|
+
{"version":3,"file":"template-ko.d.ts","sourceRoot":"","sources":["../../../src/i18n/template-ko.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBAszBE"}
|
|
@@ -695,7 +695,7 @@ export default {
|
|
|
695
695
|
'Step 3': '3단계',
|
|
696
696
|
'Step 4': '4단계',
|
|
697
697
|
'Step 5': '5단계',
|
|
698
|
-
i18nAccountBillingSubscription: '계정, 청구 또는 구독에서 문제가 발생했습니까? 도움이 필요한 경우
|
|
698
|
+
i18nAccountBillingSubscription: '계정, 청구 또는 구독에서 문제가 발생했습니까? 도움이 필요한 경우 <2>고객 서비스에 문의해 주십시오.</2>',
|
|
699
699
|
'Critical solutions have been triggered': '중요한 솔루션이 트리거되었습니다.',
|
|
700
700
|
'Critical solutions for your system': '시스템을 위한 중요한 솔루션',
|
|
701
701
|
'Solutions have been triggered for you based on file upload or common issues that currently have high visibility.': '파일 업로드 또는 현재 가시성이 높은 일반적인 문제에 따라 솔루션이 트리거되었습니다.',
|
|
@@ -716,7 +716,7 @@ export default {
|
|
|
716
716
|
'This case has been added to our queue! As a reminder, your initial response time is': '이 케이스가 대기열에 추가되었습니다! 참고로 제공되는 초기 응답 시간:',
|
|
717
717
|
'and ongoing response time is': '및 진행 중 응답 시간:',
|
|
718
718
|
'Add, edit, or remove top content solutions and categories. You can also create a new set of top content recommendations for specific versions.': '상위 콘텐츠 솔루션 및 범주를 추가, 편집 또는 제거합니다. 특정 버전에 대한 새로운 상위 콘텐츠 추천 세트를 만들 수도 있습니다.',
|
|
719
|
-
|
|
719
|
+
i18IRDashboard: '<2>IR 대시 보드를</2> 사용하여 추천을 받고 기존 콘텐츠의 성능을 확인할 수 있습니다.',
|
|
720
720
|
'No top content found': '상위 콘텐츠가 없습니다.',
|
|
721
721
|
'Please select a product and version to edit': '편집할 제품 및 버전을 선택하십시오.',
|
|
722
722
|
'Please select a version to edit': '편집할 버전을 선택하십시오.',
|
|
@@ -715,7 +715,7 @@ declare const _default: {
|
|
|
715
715
|
'This case has been added to our queue! As a reminder, your initial response time is': string;
|
|
716
716
|
'and ongoing response time is': string;
|
|
717
717
|
'Add, edit, or remove top content solutions and categories. You can also create a new set of top content recommendations for specific versions.': string;
|
|
718
|
-
|
|
718
|
+
i18IRDashboard: string;
|
|
719
719
|
'No top content found': string;
|
|
720
720
|
'Please select a product and version to edit': string;
|
|
721
721
|
'Please select a version to edit': string;
|
|
@@ -694,7 +694,7 @@ export default {
|
|
|
694
694
|
'Step 3': 'Etapa 3',
|
|
695
695
|
'Step 4': 'Etapa 4',
|
|
696
696
|
'Step 5': 'Etapa 5',
|
|
697
|
-
i18nAccountBillingSubscription: 'Tem uma conta, cobrança ou problema de subscrição? Entre em contato com o serviço de atendimento ao cliente para obter ajuda.',
|
|
697
|
+
i18nAccountBillingSubscription: 'Tem uma conta, cobrança ou problema de subscrição? Entre em contato com o <2>serviço de atendimento </2> ao cliente para obter ajuda.',
|
|
698
698
|
'Critical solutions have been triggered': 'Soluções críticas foram acionadas',
|
|
699
699
|
'Critical solutions for your system': 'Soluções críticas para seu sistema',
|
|
700
700
|
'Solutions have been triggered for you based on file upload or common issues that currently have high visibility.': 'As soluções foram acionadas para você com base no upload de arquivos ou em problemas comuns que atualmente têm alta visibilidade.',
|
|
@@ -715,7 +715,7 @@ export default {
|
|
|
715
715
|
'This case has been added to our queue! As a reminder, your initial response time is': 'O caso foi adicionado à nossa fila! Como um lembrete, seu tempo de resposta inicial é',
|
|
716
716
|
'and ongoing response time is': 'e o tempo de resposta contínua é',
|
|
717
717
|
'Add, edit, or remove top content solutions and categories. You can also create a new set of top content recommendations for specific versions.': 'Adicione, edite ou remova soluções e categorias de conteúdo superior. Você também pode criar um novo conjunto de recomendações de conteúdo de ponta para versões específicas.',
|
|
718
|
-
|
|
718
|
+
i18IRDashboard: 'Você pode usar o <2>IR Dashboard</2> para ver sugestões e verificar o desempenho do conteúdo existente.',
|
|
719
719
|
'No top content found': 'Nenhum conteúdo superior encontrado',
|
|
720
720
|
'Please select a product and version to edit': 'Selecione um produto e uma versão para editar',
|
|
721
721
|
'Please select a version to edit': 'Selecione uma versão para editar',
|
|
@@ -715,7 +715,7 @@ declare const _default: {
|
|
|
715
715
|
'This case has been added to our queue! As a reminder, your initial response time is': string;
|
|
716
716
|
'and ongoing response time is': string;
|
|
717
717
|
'Add, edit, or remove top content solutions and categories. You can also create a new set of top content recommendations for specific versions.': string;
|
|
718
|
-
|
|
718
|
+
i18IRDashboard: string;
|
|
719
719
|
'No top content found': string;
|
|
720
720
|
'Please select a product and version to edit': string;
|
|
721
721
|
'Please select a version to edit': string;
|
|
@@ -694,7 +694,7 @@ export default {
|
|
|
694
694
|
'Step 3': 'Шаг 3',
|
|
695
695
|
'Step 4': 'Шаг 4',
|
|
696
696
|
'Step 5': 'Шаг 5',
|
|
697
|
-
i18nAccountBillingSubscription: 'У вас проблема с учетной записью, выставлением счетов или подпиской? Обратитесь за помощью в
|
|
697
|
+
i18nAccountBillingSubscription: 'У вас проблема с учетной записью, выставлением счетов или подпиской? Обратитесь за помощью в <2>службу поддержки клиентов.</2>',
|
|
698
698
|
'Critical solutions have been triggered': 'Запущена функция критических решений',
|
|
699
699
|
'Critical solutions for your system': 'Критические решения для вашей системы',
|
|
700
700
|
'Solutions have been triggered for you based on file upload or common issues that currently have high visibility.': 'Для вас были запущены решения на основе загруженных файлов или текущих распространенных проблем.',
|
|
@@ -715,7 +715,7 @@ export default {
|
|
|
715
715
|
'This case has been added to our queue! As a reminder, your initial response time is': 'Это обращение было добавлено в нашу очередь! Напоминаем, что первоначальное время ответа —',
|
|
716
716
|
'and ongoing response time is': 'и текущее время ответа —',
|
|
717
717
|
'Add, edit, or remove top content solutions and categories. You can also create a new set of top content recommendations for specific versions.': 'Добавляйте, редактируйте и удаляйте решения и категории в разделе лучшего контента. Вы также можете создать новый набор рекомендаций по лучшему контенту для конкретных версий.',
|
|
718
|
-
|
|
718
|
+
i18IRDashboard: 'Используйте инструментальную панель <2>IR Dashboard</2> для просмотра предложений и проверки работоспособности существующего контента.',
|
|
719
719
|
'No top content found': 'Лучший контент не найден',
|
|
720
720
|
'Please select a product and version to edit': 'Выберите продукт и версию для редактирования',
|
|
721
721
|
'Please select a version to edit': 'Выберите версию для редактирования',
|
|
@@ -709,7 +709,7 @@ declare const _default: {
|
|
|
709
709
|
'This case has been added to our queue! As a reminder, your initial response time is': string;
|
|
710
710
|
'and ongoing response time is': string;
|
|
711
711
|
'Add, edit, or remove top content solutions and categories. You can also create a new set of top content recommendations for specific versions.': string;
|
|
712
|
-
|
|
712
|
+
i18IRDashboard: string;
|
|
713
713
|
'No top content found': string;
|
|
714
714
|
'Please select a product and version to edit': string;
|
|
715
715
|
'Please select a version to edit': string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"template-zh.d.ts","sourceRoot":"","sources":["../../../src/i18n/template-zh.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,
|
|
1
|
+
{"version":3,"file":"template-zh.d.ts","sourceRoot":"","sources":["../../../src/i18n/template-zh.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBA+wBE"}
|
|
@@ -688,7 +688,7 @@ export default {
|
|
|
688
688
|
'Step 3': '第 3 步',
|
|
689
689
|
'Step 4': '第 4 步',
|
|
690
690
|
'Step 5': '第 5 步',
|
|
691
|
-
i18nAccountBillingSubscription: '
|
|
691
|
+
i18nAccountBillingSubscription: '如果有与帐户、帐单或订阅相关的问题,<2>请联系客户服务以获得帮助。</2>',
|
|
692
692
|
'Critical solutions have been triggered': '已触发严重级别的解决方案',
|
|
693
693
|
'Critical solutions for your system': '与您的系统相关的严重级别的解决方案',
|
|
694
694
|
'Solutions have been triggered for you based on file upload or common issues that currently have high visibility.': '根据您所上传的文件或当前常见的问题,已触发一些解决方案。',
|
|
@@ -709,7 +709,7 @@ export default {
|
|
|
709
709
|
'This case has been added to our queue! As a reminder, your initial response time is': '这个问题单已被加入到队列中!您的初始响应时间是',
|
|
710
710
|
'and ongoing response time is': '持续的响应时间是',
|
|
711
711
|
'Add, edit, or remove top content solutions and categories. You can also create a new set of top content recommendations for specific versions.': '添加、编辑或删除主要内容解决方案和类别。您也可以为特定版本创建新的主要内容建议。',
|
|
712
|
-
|
|
712
|
+
i18IRDashboard: '您可以使用 <2>IR Dashboard</2> 来获取建议,并检查现有内容的性能。',
|
|
713
713
|
'No top content found': '没有找到主要内容',
|
|
714
714
|
'Please select a product and version to edit': '请选择一个要编辑的产品和版本',
|
|
715
715
|
'Please select a version to edit': '请选择一个要编辑的版本',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rh-support/troubleshoot",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.63",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public",
|
|
6
6
|
"registry": "https://registry.npmjs.org"
|
|
@@ -73,12 +73,12 @@
|
|
|
73
73
|
"@patternfly/react-core": "4.194.0",
|
|
74
74
|
"@progress/kendo-drawing": "^1.6.0",
|
|
75
75
|
"@progress/kendo-react-pdf": "^3.12.0",
|
|
76
|
-
"@rh-support/api": "0.3.
|
|
77
|
-
"@rh-support/components": "1.1.
|
|
78
|
-
"@rh-support/react-context": "0.2.
|
|
79
|
-
"@rh-support/types": "0.2.
|
|
80
|
-
"@rh-support/user-permissions": "0.2.
|
|
81
|
-
"@rh-support/utils": "0.2.
|
|
76
|
+
"@rh-support/api": "^0.3.12",
|
|
77
|
+
"@rh-support/components": "^1.1.31",
|
|
78
|
+
"@rh-support/react-context": "^0.2.34",
|
|
79
|
+
"@rh-support/types": "^0.2.2",
|
|
80
|
+
"@rh-support/user-permissions": "^0.2.25",
|
|
81
|
+
"@rh-support/utils": "^0.2.23",
|
|
82
82
|
"@types/react-redux": "^7.1.12",
|
|
83
83
|
"@types/redux": "^3.6.0",
|
|
84
84
|
"@webcomponents/webcomponentsjs": "^2.2.10",
|
|
@@ -143,5 +143,5 @@
|
|
|
143
143
|
"not ie <= 11",
|
|
144
144
|
"not op_mini all"
|
|
145
145
|
],
|
|
146
|
-
"gitHead": "
|
|
146
|
+
"gitHead": "70f8095b855f531eb814e85cb5a77908405fff5f"
|
|
147
147
|
}
|