@rh-support/manage 2.5.71 → 2.5.73

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 pf-v6-u-align-items-center" },
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 = 150) => {
32
+ export const truncateText = (text, maxLength = 50) => {
33
33
  if (!text || text.length <= maxLength) {
34
34
  return text;
35
35
  }
@@ -68,7 +68,6 @@
68
68
 
69
69
  & > * {
70
70
  display: flex;
71
- align-items: center;
72
71
  }
73
72
 
74
73
  .toolbar-left {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rh-support/manage",
3
- "version": "2.5.71",
3
+ "version": "2.5.73",
4
4
  "description": "Customer Support Manage App",
5
5
  "author": "Jordan Eudy <jeudy100@gmail.com>",
6
6
  "license": "ISC",
@@ -45,7 +45,7 @@
45
45
  "prepublishOnly": "npm run build"
46
46
  },
47
47
  "peerDependencies": {
48
- "@cee-eng/hydrajs": "4.18.92",
48
+ "@cee-eng/hydrajs": "4.18.93",
49
49
  "@patternfly/patternfly": "6.2.1",
50
50
  "@patternfly/react-core": "6.2.1",
51
51
  "@patternfly/react-table": "6.2.1",
@@ -75,16 +75,16 @@
75
75
  "typescript": "^5.3.3"
76
76
  },
77
77
  "dependencies": {
78
- "@cee-eng/hydrajs": "4.18.92",
78
+ "@cee-eng/hydrajs": "4.18.93",
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.55",
82
+ "@rh-support/components": "2.5.57",
83
83
  "@rh-support/configs": "2.0.21",
84
- "@rh-support/react-context": "2.5.70",
84
+ "@rh-support/react-context": "2.5.72",
85
85
  "@rh-support/types": "2.0.5",
86
- "@rh-support/user-permissions": "2.5.26",
87
- "@rh-support/utils": "2.5.23",
86
+ "@rh-support/user-permissions": "2.5.28",
87
+ "@rh-support/utils": "2.5.25",
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": "55516f2e9d134de1566ca6d5f5e39e43c92bc296"
106
+ "gitHead": "d45149a33bafb8c16d60bb4d0d9d4e9acb3d372d"
107
107
  }