@rh-support/cases 2.0.1 → 2.0.2-beta.0
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.
|
@@ -75,7 +75,7 @@ export function CaseListTable(props) {
|
|
|
75
75
|
},
|
|
76
76
|
{
|
|
77
77
|
id: CaseListColumnIds.summary,
|
|
78
|
-
cellWidth:
|
|
78
|
+
cellWidth: 30,
|
|
79
79
|
title: t('Issue summary'),
|
|
80
80
|
sortable: true,
|
|
81
81
|
accessor: (data) => data.case_summary,
|
|
@@ -253,7 +253,7 @@ export function CaseListTable(props) {
|
|
|
253
253
|
heightAuto: true,
|
|
254
254
|
cells: [
|
|
255
255
|
{
|
|
256
|
-
props: { colSpan:
|
|
256
|
+
props: { colSpan: 9 },
|
|
257
257
|
title: (React.createElement(Bullseye, null,
|
|
258
258
|
React.createElement(EmptyState, { variant: EmptyStateVariant.full },
|
|
259
259
|
React.createElement(EmptyStateIcon, { icon: SearchIcon }),
|
package/lib/esm/css/caseList.css
CHANGED
|
@@ -511,7 +511,7 @@
|
|
|
511
511
|
/* Issue Summary Header */
|
|
512
512
|
th.pf-c-table__sort[data-label='Issue summary'],
|
|
513
513
|
.case-list-table tbody > tr > :nth-child(3) {
|
|
514
|
-
min-width:
|
|
514
|
+
min-width: 270px;
|
|
515
515
|
}
|
|
516
516
|
|
|
517
517
|
th.pf-c-table__sort[data-label='Owner'],
|
|
@@ -526,11 +526,20 @@
|
|
|
526
526
|
}
|
|
527
527
|
|
|
528
528
|
th.pf-c-table__sort[data-label='Modified by'],
|
|
529
|
-
th.pf-c-table__sort[data-label='Created by']
|
|
530
|
-
|
|
531
|
-
|
|
529
|
+
th.pf-c-table__sort[data-label='Created by'] {
|
|
530
|
+
min-width: 170px;
|
|
531
|
+
}
|
|
532
|
+
|
|
533
|
+
th.pf-m-width-15[data-label='Product and version'] {
|
|
534
|
+
min-width: 180px;
|
|
535
|
+
}
|
|
536
|
+
|
|
537
|
+
th.pf-c-table__sort[data-label='Account number'] {
|
|
538
|
+
min-width: 205px;
|
|
539
|
+
}
|
|
540
|
+
|
|
532
541
|
th.pf-c-table__sort[data-label='Personal reference number'] {
|
|
533
|
-
min-width:
|
|
542
|
+
min-width: 232px;
|
|
534
543
|
}
|
|
535
544
|
|
|
536
545
|
/* Closed Date Header */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rh-support/cases",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.2-beta.0",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public",
|
|
6
6
|
"registry": "https://registry.npmjs.org"
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"lib/**/*"
|
|
27
27
|
],
|
|
28
28
|
"peerDependencies": {
|
|
29
|
-
"@cee-eng/hydrajs": "4.15.
|
|
29
|
+
"@cee-eng/hydrajs": "4.15.72",
|
|
30
30
|
"@patternfly/patternfly": "4.196.7",
|
|
31
31
|
"@patternfly/pfe-collapse": "1.12.3",
|
|
32
32
|
"@patternfly/react-core": "4.264.0",
|
|
@@ -46,16 +46,16 @@
|
|
|
46
46
|
"solr-query-builder": "1.0.1"
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@cee-eng/hydrajs": "4.15.
|
|
49
|
+
"@cee-eng/hydrajs": "4.15.72",
|
|
50
50
|
"@patternfly/patternfly": "4.196.7",
|
|
51
51
|
"@patternfly/pfe-collapse": "1.12.3",
|
|
52
52
|
"@patternfly/react-core": "4.264.0",
|
|
53
53
|
"@patternfly/react-table": "4.111.33",
|
|
54
|
-
"@rh-support/components": "2.0.
|
|
55
|
-
"@rh-support/react-context": "2.0.
|
|
54
|
+
"@rh-support/components": "2.0.2-beta.0",
|
|
55
|
+
"@rh-support/react-context": "2.0.2-beta.0",
|
|
56
56
|
"@rh-support/types": "2.0.1",
|
|
57
|
-
"@rh-support/user-permissions": "2.0.1",
|
|
58
|
-
"@rh-support/utils": "2.0.1",
|
|
57
|
+
"@rh-support/user-permissions": "2.0.1-beta.0",
|
|
58
|
+
"@rh-support/utils": "2.0.1-beta.0",
|
|
59
59
|
"i18next": "^19.0.1",
|
|
60
60
|
"localforage": "^1.7.3",
|
|
61
61
|
"lodash": "^4.17.21",
|
|
@@ -99,5 +99,5 @@
|
|
|
99
99
|
"not ie <= 11",
|
|
100
100
|
"not op_mini all"
|
|
101
101
|
],
|
|
102
|
-
"gitHead": "
|
|
102
|
+
"gitHead": "d8aaf95219bd66267ccfeef0d708d88dadc60766"
|
|
103
103
|
}
|