@rh-support/manage 2.1.52 → 2.1.54
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/ManageTab.d.ts.map +1 -1
- package/lib/esm/ManageTab.js +4 -3
- package/lib/esm/components/ManageBookmarkedAccountsTab/ManageGroupedBookmarkedAccountsTab.d.ts.map +1 -1
- package/lib/esm/components/ManageBookmarkedAccountsTab/ManageGroupedBookmarkedAccountsTab.js +5 -4
- package/lib/esm/scss/_pf-overrides.scss +4 -0
- package/package.json +8 -8
|
@@ -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,
|
|
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"}
|
package/lib/esm/ManageTab.js
CHANGED
|
@@ -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: "
|
|
9
|
-
React.createElement(Trans, null,
|
|
10
|
-
|
|
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))));
|
package/lib/esm/components/ManageBookmarkedAccountsTab/ManageGroupedBookmarkedAccountsTab.d.ts.map
CHANGED
|
@@ -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,
|
|
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"}
|
package/lib/esm/components/ManageBookmarkedAccountsTab/ManageGroupedBookmarkedAccountsTab.js
CHANGED
|
@@ -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(
|
|
261
|
-
React.createElement(
|
|
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.
|
|
3
|
+
"version": "2.1.54",
|
|
4
4
|
"description": "Customer Support Manage App",
|
|
5
5
|
"author": "Jordan Eudy <jeudy100@gmail.com>",
|
|
6
6
|
"homepage": "",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"prepublishOnly": "npm run build"
|
|
47
47
|
},
|
|
48
48
|
"peerDependencies": {
|
|
49
|
-
"@cee-eng/hydrajs": "4.17.
|
|
49
|
+
"@cee-eng/hydrajs": "4.17.3",
|
|
50
50
|
"@patternfly/patternfly": "5.1.0",
|
|
51
51
|
"@patternfly/react-core": "5.1.1",
|
|
52
52
|
"@patternfly/react-table": "5.1.1",
|
|
@@ -75,16 +75,16 @@
|
|
|
75
75
|
"typescript": "^5.3.3"
|
|
76
76
|
},
|
|
77
77
|
"dependencies": {
|
|
78
|
-
"@cee-eng/hydrajs": "4.17.
|
|
78
|
+
"@cee-eng/hydrajs": "4.17.3",
|
|
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.
|
|
82
|
+
"@rh-support/components": "2.1.40",
|
|
83
83
|
"@rh-support/configs": "2.0.16",
|
|
84
|
-
"@rh-support/react-context": "2.1.
|
|
84
|
+
"@rh-support/react-context": "2.1.43",
|
|
85
85
|
"@rh-support/types": "2.0.3",
|
|
86
|
-
"@rh-support/user-permissions": "2.1.
|
|
87
|
-
"@rh-support/utils": "2.1.
|
|
86
|
+
"@rh-support/user-permissions": "2.1.29",
|
|
87
|
+
"@rh-support/utils": "2.1.21",
|
|
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": "
|
|
104
|
+
"gitHead": "d86f205d22c0034bfa760f7e7f4e77e3cf907b0f"
|
|
105
105
|
}
|