@rh-support/manage 2.5.66 → 2.5.67
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.
|
@@ -28,7 +28,7 @@ export function ManageTable(props) {
|
|
|
28
28
|
const pagination = () => (props.pagination !== undefined ? props.pagination : true);
|
|
29
29
|
return (React.createElement("div", { className: "table-wrapper" },
|
|
30
30
|
isError && (React.createElement(React.Fragment, null,
|
|
31
|
-
React.createElement(Alert, { variant: errorVariant, isInline: true, title: errorTitle, actionClose: React.createElement(AlertActionCloseButton, null), className: "pf-v6-u-my-sm" }, errorComponent))),
|
|
31
|
+
React.createElement(Alert, { variant: errorVariant, isInline: true, title: errorTitle, actionClose: React.createElement(AlertActionCloseButton, null), className: "pf-v6-u-my-sm bookmark-alert" }, errorComponent))),
|
|
32
32
|
React.createElement(TableComponent, Object.assign({}, tableProps),
|
|
33
33
|
React.createElement(PFTable, Object.assign({ sortInfo: sortInfo, "aria-label": ariaLabel, pagination: pagination(), emptyStateRow: noResultFoundRow(props.noResultText) }, (actions && { actions }), (areActionsDisabled && { areActionsDisabled }), (actionResolver && { actionResolver }), { isLoading: isFetching, keepPageNumberOnDataChange: keepPageNumberOnDataChange })),
|
|
34
34
|
tableProps.data.length > 0 && pagination() && (React.createElement("footer", null,
|
package/lib/esm/scss/_main.scss
CHANGED
|
@@ -50,6 +50,7 @@
|
|
|
50
50
|
border: 1px solid #d2d2d2;
|
|
51
51
|
|
|
52
52
|
&:not(.secondary-toolbar) {
|
|
53
|
+
justify-content: space-between;
|
|
53
54
|
border-top-left-radius: var(--pf-t--global--border--radius--small);
|
|
54
55
|
border-top-right-radius: var(--pf-t--global--border--radius--small);
|
|
55
56
|
}
|
|
@@ -156,6 +157,13 @@
|
|
|
156
157
|
}
|
|
157
158
|
}
|
|
158
159
|
|
|
160
|
+
&:has(.pf-v6-c-expandable-section.pf-m-expanded) {
|
|
161
|
+
.toolbar {
|
|
162
|
+
border-top-left-radius: var(--pf-t--global--border--radius--small);
|
|
163
|
+
border-top-right-radius: var(--pf-t--global--border--radius--small);
|
|
164
|
+
}
|
|
165
|
+
}
|
|
166
|
+
|
|
159
167
|
.create-category-link {
|
|
160
168
|
padding: 0;
|
|
161
169
|
}
|
|
@@ -169,11 +177,17 @@
|
|
|
169
177
|
border: 1px solid #ccc;
|
|
170
178
|
border-top: none;
|
|
171
179
|
border-radius: 8px;
|
|
180
|
+
border-top-right-radius: 0px;
|
|
181
|
+
border-top-left-radius: 0px;
|
|
182
|
+
padding-top: 1rem;
|
|
172
183
|
|
|
173
184
|
tbody:first-of-type {
|
|
174
185
|
border-top: none;
|
|
175
186
|
}
|
|
176
|
-
|
|
187
|
+
.bookmark-alert {
|
|
188
|
+
margin-left: 1rem;
|
|
189
|
+
margin-right: 1rem;
|
|
190
|
+
}
|
|
177
191
|
.pf-v6-c-table__action {
|
|
178
192
|
.pf-v6-c-dropdown__menu button.pf-m-disabled:hover {
|
|
179
193
|
cursor: not-allowed;
|
|
@@ -184,8 +198,8 @@
|
|
|
184
198
|
margin-top: 0;
|
|
185
199
|
padding: 0.5rem 1.2rem;
|
|
186
200
|
background-color: #f0f0f0;
|
|
187
|
-
border-bottom-left-radius:
|
|
188
|
-
border-bottom-right-radius:
|
|
201
|
+
border-bottom-left-radius: 8px;
|
|
202
|
+
border-bottom-right-radius: 8px;
|
|
189
203
|
|
|
190
204
|
.pf-v6-c-pagination {
|
|
191
205
|
padding: 0;
|
|
@@ -404,15 +418,6 @@ svg.hostnameSpinner {
|
|
|
404
418
|
border-radius: 8px;
|
|
405
419
|
}
|
|
406
420
|
|
|
407
|
-
#manage-groups,
|
|
408
|
-
#manage-bookmarked-accounts,
|
|
409
|
-
#tags-manager,
|
|
410
|
-
#notification-emails {
|
|
411
|
-
.table-wrapper {
|
|
412
|
-
margin-top: -5px;
|
|
413
|
-
}
|
|
414
|
-
}
|
|
415
|
-
|
|
416
421
|
.pf-v6-c-empty-state__icon {
|
|
417
422
|
color: var(--pf-t--color--gray--30);
|
|
418
423
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rh-support/manage",
|
|
3
|
-
"version": "2.5.
|
|
3
|
+
"version": "2.5.67",
|
|
4
4
|
"description": "Customer Support Manage App",
|
|
5
5
|
"author": "Jordan Eudy <jeudy100@gmail.com>",
|
|
6
6
|
"license": "ISC",
|
|
@@ -103,5 +103,5 @@
|
|
|
103
103
|
"defaults and supports es6-module",
|
|
104
104
|
"maintained node versions"
|
|
105
105
|
],
|
|
106
|
-
"gitHead": "
|
|
106
|
+
"gitHead": "40f7bb68143a6cd096c7b3ee2e524083317d6957"
|
|
107
107
|
}
|