@rh-support/manage 2.5.71 → 2.5.72
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.
|
@@ -170,7 +170,7 @@ export function PartnershipsList() {
|
|
|
170
170
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
171
171
|
}, [managedAccounts, accountManagers]);
|
|
172
172
|
return (React.createElement("section", { id: "manage-partnerships-list" },
|
|
173
|
-
React.createElement("div", { className: "toolbar secondary-toolbar pf-v6-u-display-flex
|
|
173
|
+
React.createElement("div", { className: "toolbar secondary-toolbar pf-v6-u-display-flex" },
|
|
174
174
|
React.createElement("div", { className: "toolbar-left pf-v6-u-mr-md" },
|
|
175
175
|
React.createElement("label", { htmlFor: "search-partnerships" }, "Filter by"),
|
|
176
176
|
React.createElement(SearchInput, { className: "pf-v6-u-flex-grow-1 pf-v6-c-search-input pf-v6-u-background-color-100", id: "search-partnerships", placeholder: t('Search for an existing partnership'), value: searchString, onChange: (_event, value) => setSearchString(value), onClear: () => setSearchString(''), "aria-label": t('Search for an existing partnership') })),
|
|
@@ -29,7 +29,7 @@ export const daysFromNow = (date) => {
|
|
|
29
29
|
return TotalDays;
|
|
30
30
|
};
|
|
31
31
|
// truncates text after specified character limit and adds ellipsis
|
|
32
|
-
export const truncateText = (text, maxLength =
|
|
32
|
+
export const truncateText = (text, maxLength = 50) => {
|
|
33
33
|
if (!text || text.length <= maxLength) {
|
|
34
34
|
return text;
|
|
35
35
|
}
|
package/lib/esm/scss/_main.scss
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rh-support/manage",
|
|
3
|
-
"version": "2.5.
|
|
3
|
+
"version": "2.5.72",
|
|
4
4
|
"description": "Customer Support Manage App",
|
|
5
5
|
"author": "Jordan Eudy <jeudy100@gmail.com>",
|
|
6
6
|
"license": "ISC",
|
|
@@ -79,12 +79,12 @@
|
|
|
79
79
|
"@patternfly/patternfly": "6.2.1",
|
|
80
80
|
"@patternfly/react-core": "6.2.1",
|
|
81
81
|
"@patternfly/react-table": "6.2.1",
|
|
82
|
-
"@rh-support/components": "2.5.
|
|
82
|
+
"@rh-support/components": "2.5.56",
|
|
83
83
|
"@rh-support/configs": "2.0.21",
|
|
84
|
-
"@rh-support/react-context": "2.5.
|
|
84
|
+
"@rh-support/react-context": "2.5.71",
|
|
85
85
|
"@rh-support/types": "2.0.5",
|
|
86
|
-
"@rh-support/user-permissions": "2.5.
|
|
87
|
-
"@rh-support/utils": "2.5.
|
|
86
|
+
"@rh-support/user-permissions": "2.5.27",
|
|
87
|
+
"@rh-support/utils": "2.5.24",
|
|
88
88
|
"@types/react-beautiful-dnd": "^13.0.0",
|
|
89
89
|
"i18next": "^23.15.0",
|
|
90
90
|
"lodash": ">=4.17.15",
|
|
@@ -103,5 +103,5 @@
|
|
|
103
103
|
"defaults and supports es6-module",
|
|
104
104
|
"maintained node versions"
|
|
105
105
|
],
|
|
106
|
-
"gitHead": "
|
|
106
|
+
"gitHead": "3d90b8dd490311781e6d7d7d4c03afd3172cddd2"
|
|
107
107
|
}
|