File tree Expand file tree Collapse file tree 4 files changed +30
-22
lines changed Expand file tree Collapse file tree 4 files changed +30
-22
lines changed Original file line number Diff line number Diff line change @@ -67,18 +67,6 @@ const Navigation: React.FC<{
67
67
</ div >
68
68
< div className = "flex items-center gap-4" >
69
69
< VersionInfo className = "hidden md:block" />
70
- < a
71
- href = "https://www.npmjs.com/package/ag-grid-react-components"
72
- target = "_blank"
73
- rel = "noopener noreferrer"
74
- className = "flex items-center gap-2 px-4 py-2 bg-gray-800 hover:bg-gray-700 rounded-lg transition-colors"
75
- >
76
- < svg className = "w-5 h-5" fill = "currentColor" viewBox = "0 0 256 256" >
77
- < path d = "M0 256V0h256v256z" />
78
- < path d = "M128 128v128h128V0H128z" fill = "#C12127" />
79
- </ svg >
80
- NPM
81
- </ a >
82
70
< a
83
71
href = "https://github.com/ryanrozich/ag-grid-react-components"
84
72
target = "_blank"
Original file line number Diff line number Diff line change @@ -34,7 +34,12 @@ export const darkTheme = themeQuartz.withParams({
34
34
} ) ;
35
35
36
36
// Status chip renderer
37
- export const StatusRenderer : React . FC < ICellRendererParams > = ( { value } ) => {
37
+ export const StatusRenderer : React . FC < ICellRendererParams > = ( { value, node } ) => {
38
+ // Don't render anything in footer/total rows
39
+ if ( node ?. footer || node ?. aggData ) {
40
+ return null ;
41
+ }
42
+
38
43
const getStatusColor = ( status : string ) => {
39
44
switch ( status ) {
40
45
case "Backlog" :
@@ -68,7 +73,12 @@ export const StatusRenderer: React.FC<ICellRendererParams> = ({ value }) => {
68
73
} ;
69
74
70
75
// Priority chip renderer
71
- export const PriorityRenderer : React . FC < ICellRendererParams > = ( { value } ) => {
76
+ export const PriorityRenderer : React . FC < ICellRendererParams > = ( { value, node } ) => {
77
+ // Don't render anything in footer/total rows
78
+ if ( node ?. footer || node ?. aggData ) {
79
+ return null ;
80
+ }
81
+
72
82
const getPriorityColor = ( priority : string ) => {
73
83
switch ( priority ) {
74
84
case "Critical" :
Original file line number Diff line number Diff line change @@ -200,6 +200,8 @@ font-family:
200
200
201
201
.ag-theme-quartz-dark .ag-cell {
202
202
line-height : var (--ag-row-height );
203
+ display : flex;
204
+ align-items : center;
203
205
}
204
206
205
207
/* Numeric cells styling */
@@ -395,6 +397,14 @@ font-family:
395
397
border-radius : 4px ;
396
398
}
397
399
400
+ /* Ensure custom cell renderers respect alignment */
401
+ .ag-theme-quartz-dark .ag-cell .pill-renderer ,
402
+ .ag-theme-quartz-dark .ag-cell .avatar-renderer {
403
+ display : flex;
404
+ align-items : center;
405
+ height : 100% ;
406
+ }
407
+
398
408
/* Custom scrollbar */
399
409
.ag-theme-quartz-dark ::-webkit-scrollbar {
400
410
width : 10px ;
Original file line number Diff line number Diff line change 1
1
{
2
2
"version" : " 0.2.0-rc1" ,
3
3
"git" : {
4
- "commitHash" : " b1ba6bf2f6c13897f70b4bceb9bf94a459525d5e " ,
5
- "shortHash" : " b1ba6bf " ,
6
- "branch" : " fix/e2e-test-selectors " ,
7
- "commitDate" : " 2025-07-09 18:27:31 -0500" ,
4
+ "commitHash" : " c6a2b7440d5a36f779178c92e13a5b5cbe16c7bd " ,
5
+ "shortHash" : " c6a2b74 " ,
6
+ "branch" : " fix/bundled-ui-fixes " ,
7
+ "commitDate" : " 2025-07-09 23:21:14 -0500" ,
8
8
"latestTag" : " v0.1.1-rc1" ,
9
- "commitsSinceTag" : 31 ,
9
+ "commitsSinceTag" : 34 ,
10
10
"isDirty" : true
11
11
},
12
12
"deployment" : {
15
15
"isMainBranch" : false ,
16
16
"deployPath" : " ag-grid-react-components"
17
17
},
18
- "buildTime" : " 2025-07-10T02:55:14.965Z " ,
19
- "displayVersion" : " v0.2.0-rc1+31 " ,
20
- "displayLabel" : " fix/e2e-test-selectors "
18
+ "buildTime" : " 2025-07-10T04:51:20.271Z " ,
19
+ "displayVersion" : " v0.2.0-rc1+34 " ,
20
+ "displayLabel" : " fix/bundled-ui-fixes "
21
21
}
You can’t perform that action at this time.
0 commit comments