@rh-support/manage 2.1.53 → 2.1.55

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.
@@ -1 +1 @@
1
- {"version":3,"file":"ManageTab.d.ts","sourceRoot":"","sources":["../../src/ManageTab.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,YAAY,EAAE,MAAM,0BAA0B,CAAC;AACxD,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,UAAU,MAAM;IACZ,GAAG,EAAE,YAAY,CAAC,MAAM,CAAC,CAAC;IAC1B,aAAa,EAAE,OAAO,CAAC;CAC1B;AAED,wBAAgB,SAAS,CAAC,KAAK,EAAE,MAAM,qBAqBtC"}
1
+ {"version":3,"file":"ManageTab.d.ts","sourceRoot":"","sources":["../../src/ManageTab.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,YAAY,EAAE,MAAM,0BAA0B,CAAC;AACxD,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,UAAU,MAAM;IACZ,GAAG,EAAE,YAAY,CAAC,MAAM,CAAC,CAAC;IAC1B,aAAa,EAAE,OAAO,CAAC;CAC1B;AAED,wBAAgB,SAAS,CAAC,KAAK,EAAE,MAAM,qBAuBtC"}
@@ -5,9 +5,10 @@ export function ManageTab(props) {
5
5
  const tab = props.tab;
6
6
  const { t } = useTranslation();
7
7
  return (React.createElement(React.Fragment, null,
8
- React.createElement("pfe-tab", { role: "heading", slot: "tab", "data-tracking-id": tab['data-tracking-id'], onClick: tab.onClick },
9
- React.createElement(Trans, null, tab.title)),
10
- React.createElement("pfe-tab-panel", { role: "region", slot: "panel" },
8
+ React.createElement("pfe-tab", { role: "tab", slot: "tab", "data-tracking-id": tab['data-tracking-id'], onClick: tab.onClick },
9
+ React.createElement(Trans, null,
10
+ React.createElement("h2", null, tab.title))),
11
+ React.createElement("pfe-tab-panel", { role: "tabpanel", slot: "panel" },
11
12
  React.createElement(ErrorBoundary, { errorMsgInfo: {
12
13
  message: t('There was an error loading manage tab. Please try refreshing the page.'),
13
14
  }, isPageLevelError: true }, props.loadComponent && tab.component))));
@@ -1 +1 @@
1
- {"version":3,"file":"ManageGroupedBookmarkedAccountsTab.d.ts","sourceRoot":"","sources":["../../../../src/components/ManageBookmarkedAccountsTab/ManageGroupedBookmarkedAccountsTab.tsx"],"names":[],"mappings":"AAwCA,OAAO,KAA2B,MAAM,OAAO,CAAC;AAOhD,UAAU,MAAM;IACZ,yBAAyB,EAAE,OAAO,CAAC;CACtC;AAED,wBAAgB,kCAAkC,CAAC,EAAE,yBAAyB,EAAE,EAAE,MAAM,qBA8YvF"}
1
+ {"version":3,"file":"ManageGroupedBookmarkedAccountsTab.d.ts","sourceRoot":"","sources":["../../../../src/components/ManageBookmarkedAccountsTab/ManageGroupedBookmarkedAccountsTab.tsx"],"names":[],"mappings":"AAwCA,OAAO,KAA2B,MAAM,OAAO,CAAC;AAOhD,UAAU,MAAM;IACZ,yBAAyB,EAAE,OAAO,CAAC;CACtC;AAED,wBAAgB,kCAAkC,CAAC,EAAE,yBAAyB,EAAE,EAAE,MAAM,qBAoZvF"}
@@ -233,10 +233,10 @@ export function ManageGroupedBookmarkedAccountsTab({ canManageBookmarkAccounts }
233
233
  cellWidth: 10,
234
234
  cell: (group) => (React.createElement(ActionList, { isIconList: true },
235
235
  React.createElement(ActionListItem, null,
236
- React.createElement(Button, { variant: "plain", onClick: () => onOpenEditGroupOpenModal(group) },
236
+ React.createElement(Button, { "aria-label": "edit", variant: "plain", onClick: () => onOpenEditGroupOpenModal(group) },
237
237
  React.createElement(PencilAltIcon, null))),
238
238
  React.createElement(ActionListItem, null,
239
- React.createElement(Button, { variant: "plain", onClick: () => removeGroup(group) },
239
+ React.createElement(Button, { "aria-label": "delete", variant: "plain", onClick: () => removeGroup(group) },
240
240
  React.createElement(TrashIcon, null))))),
241
241
  },
242
242
  ];
@@ -257,8 +257,9 @@ export function ManageGroupedBookmarkedAccountsTab({ canManageBookmarkAccounts }
257
257
  React.createElement("a", { href: "https://source.redhat.com/communitiesatredhat/applications/integration-community-of-practice/misplaced/lostnfound/bookmarking", target: "_blank", rel: "noopener noreferrer" },
258
258
  ' ',
259
259
  "bookmarks in the customer support tool"))), closeBtnAriaLabel: "Close" },
260
- React.createElement(Icon, { size: "md", className: "pf-v5-u-ml-xs", "aria-label": "Cluster Id Info" },
261
- React.createElement(InfoCircleIcon, null)))))),
260
+ React.createElement(Button, { variant: "plain", className: "manage-bookmark-info-icon-button", "aria-label": "Cluster Id Info" },
261
+ React.createElement(Icon, { size: "md" },
262
+ React.createElement(InfoCircleIcon, null))))))),
262
263
  React.createElement("div", { className: "toolbar" },
263
264
  React.createElement("form", { onSubmit: (event) => event.preventDefault(), className: "toolbar-left" },
264
265
  React.createElement("label", { htmlFor: "bookmark-account-selector" },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rh-support/manage",
3
- "version": "2.1.53",
3
+ "version": "2.1.55",
4
4
  "description": "Customer Support Manage App",
5
5
  "author": "Jordan Eudy <jeudy100@gmail.com>",
6
6
  "homepage": "",
@@ -79,12 +79,12 @@
79
79
  "@patternfly/patternfly": "5.1.0",
80
80
  "@patternfly/react-core": "5.1.1",
81
81
  "@patternfly/react-table": "5.1.1",
82
- "@rh-support/components": "2.1.39",
82
+ "@rh-support/components": "2.1.41",
83
83
  "@rh-support/configs": "2.0.16",
84
- "@rh-support/react-context": "2.1.42",
84
+ "@rh-support/react-context": "2.1.44",
85
85
  "@rh-support/types": "2.0.3",
86
- "@rh-support/user-permissions": "2.1.28",
87
- "@rh-support/utils": "2.1.20",
86
+ "@rh-support/user-permissions": "2.1.30",
87
+ "@rh-support/utils": "2.1.22",
88
88
  "@types/react-beautiful-dnd": "^13.0.0",
89
89
  "lodash": ">=4.17.15",
90
90
  "react": "18.2.0",
@@ -101,5 +101,5 @@
101
101
  "defaults and supports es6-module",
102
102
  "maintained node versions"
103
103
  ],
104
- "gitHead": "0e07f257ebbb2d665193b3bf245666bf03df10cd"
104
+ "gitHead": "1507b066b04853fb74cbd1fcac022dbcc94c0ec3"
105
105
  }