@rh-support/cases 2.6.37 → 2.6.38
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/components/case-list/case-list-filters/ProductsFilter.d.ts.map +1 -1
- package/lib/esm/components/case-list/case-list-filters/ProductsFilter.js +1 -0
- package/lib/esm/components/case-list/case-list-table/CaseListTable.js +2 -2
- package/lib/esm/css/caseList.css +8 -0
- package/package.json +5 -5
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ProductsFilter.d.ts","sourceRoot":"","sources":["../../../../../src/components/case-list/case-list-filters/ProductsFilter.tsx"],"names":[],"mappings":"AAUA,OAAO,EAAE,cAAc,EAAE,MAAM,0BAA0B,CAAC;AAI1D,OAAO,KAAkD,MAAM,OAAO,CAAC;AAQvE,UAAU,MAAM;IACZ,YAAY,EAAE,cAAc,EAAE,CAAC;IAC/B,gBAAgB,EAAE,OAAO,CAAC;IAC1B,WAAW,EAAE,MAAM,EAAE,CAAC;CACzB;AAED,wBAAgB,cAAc,CAAC,KAAK,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"ProductsFilter.d.ts","sourceRoot":"","sources":["../../../../../src/components/case-list/case-list-filters/ProductsFilter.tsx"],"names":[],"mappings":"AAUA,OAAO,EAAE,cAAc,EAAE,MAAM,0BAA0B,CAAC;AAI1D,OAAO,KAAkD,MAAM,OAAO,CAAC;AAQvE,UAAU,MAAM;IACZ,YAAY,EAAE,cAAc,EAAE,CAAC;IAC/B,gBAAgB,EAAE,OAAO,CAAC;IAC1B,WAAW,EAAE,MAAM,EAAE,CAAC;CACzB;AAED,wBAAgB,cAAc,CAAC,KAAK,EAAE,MAAM,qBAiP3C"}
|
|
@@ -71,6 +71,7 @@ export function ProductsFilter(props) {
|
|
|
71
71
|
];
|
|
72
72
|
setSelectedItems((prevData) => (Object.assign(Object.assign({}, prevData), { [option.value]: true })));
|
|
73
73
|
}
|
|
74
|
+
setInputValue(option.value);
|
|
74
75
|
updateFilter(dispatch, {
|
|
75
76
|
filterKey: SolrPivotKeys.product_version,
|
|
76
77
|
values: newSelectedProducts,
|
|
@@ -356,9 +356,9 @@ export function CaseListTable(props) {
|
|
|
356
356
|
React.createElement(Th, { select: {
|
|
357
357
|
onSelect: (_event, isSelecting) => selectAllRows(),
|
|
358
358
|
isSelected: isEqual(selectedCases, allRows),
|
|
359
|
-
}, className: props.isCaseListPageLoading || (caseListData || []).length < 1
|
|
359
|
+
}, className: `${props.isCaseListPageLoading || (caseListData || []).length < 1
|
|
360
360
|
? Visibility.hidden
|
|
361
|
-
: ''
|
|
361
|
+
: ''} pf-v6-u-pt-lg`, key: "selectAllRowsCheckBox" }),
|
|
362
362
|
visibleCaseListColumns.map((column, index) => (React.createElement(Th, { hasRightBorder: index === 0, style: {
|
|
363
363
|
left: (props.isCaseListPageLoading || (caseListData || []).length < 1) &&
|
|
364
364
|
column.id == 'number'
|
package/lib/esm/css/caseList.css
CHANGED
|
@@ -362,6 +362,10 @@
|
|
|
362
362
|
margin-bottom: 2rem;
|
|
363
363
|
}
|
|
364
364
|
|
|
365
|
+
.filter-wrapper label {
|
|
366
|
+
font-size: 14px !important;
|
|
367
|
+
}
|
|
368
|
+
|
|
365
369
|
.filter-wrapper .filter-group > .pf-v6-c-select h3,
|
|
366
370
|
.filter-wrapper .filter-group > .additional-filters h3,
|
|
367
371
|
.filter-wrapper .filter-group > .pf-v6-c-select label {
|
|
@@ -627,3 +631,7 @@
|
|
|
627
631
|
text-align: center;
|
|
628
632
|
}
|
|
629
633
|
}
|
|
634
|
+
|
|
635
|
+
th#product.pf-v6-c-table__th {
|
|
636
|
+
padding-top: 20px !important;
|
|
637
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rh-support/cases",
|
|
3
|
-
"version": "2.6.
|
|
3
|
+
"version": "2.6.38",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public",
|
|
6
6
|
"registry": "https://registry.npmjs.org"
|
|
@@ -43,10 +43,10 @@
|
|
|
43
43
|
"@patternfly/patternfly": "6.2.1",
|
|
44
44
|
"@patternfly/react-core": "6.2.1",
|
|
45
45
|
"@patternfly/react-table": "6.2.1",
|
|
46
|
-
"@rh-support/components": "2.5.
|
|
47
|
-
"@rh-support/react-context": "2.5.
|
|
46
|
+
"@rh-support/components": "2.5.49",
|
|
47
|
+
"@rh-support/react-context": "2.5.64",
|
|
48
48
|
"@rh-support/types": "2.0.5",
|
|
49
|
-
"@rh-support/user-permissions": "2.5.
|
|
49
|
+
"@rh-support/user-permissions": "2.5.24",
|
|
50
50
|
"@rh-support/utils": "2.5.21",
|
|
51
51
|
"localforage": "^1.10.0",
|
|
52
52
|
"lodash": "^4.17.21",
|
|
@@ -96,5 +96,5 @@
|
|
|
96
96
|
"defaults and supports es6-module",
|
|
97
97
|
"maintained node versions"
|
|
98
98
|
],
|
|
99
|
-
"gitHead": "
|
|
99
|
+
"gitHead": "5858f42e81015a97ca6101e18ea21edc46d4f3b9"
|
|
100
100
|
}
|