Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
388bcd6
feat(consumers): migrate consumer groups to UI Registry
jvorcak Jun 30, 2026
30ca302
fix(consumers): show human-readable labels in Edit modal selects
jvorcak Jun 30, 2026
bb3929a
fix(consumers): tidy Protocol stats for empty groups
jvorcak Jun 30, 2026
05f9f28
fix(consumers): shrink stats-bar height on group detail
jvorcak Jun 30, 2026
6a5bf6d
test(e2e): fix consumer-group tooltip selector after registry migration
jvorcak Jun 30, 2026
8a616e3
test(e2e): resolve shadow backend URL from dynamic ports (enterprise)
jvorcak Jun 30, 2026
06f67b7
refactor(consumers): extract DisabledReasonButton to shared ui
jvorcak Jul 1, 2026
9fcb41a
fix(consumers): correct consumer-group list pagination layout
jvorcak Jul 1, 2026
9398543
fix(consumers): move full-width utility to call site to avoid registr…
jvorcak Jul 3, 2026
bbfce35
chore(redpanda-ui): bump dialog + tabs to registry 2.3.0
jvorcak Jul 3, 2026
42fd63a
fix(consumers): add tooltip role and simplify e2e assertions
jvorcak Jul 13, 2026
5b0f131
Merge branch 'master' into UX-1371-move-consumer-groups-to-ui-registry
jvorcak Jul 13, 2026
94c4594
fix(consumers): assert the actual disabled-reason text in e2e
jvorcak Jul 13, 2026
db78ed0
refactor(consumers): address PR review feedback
jvorcak Jul 16, 2026
a20bd13
Merge remote-tracking branch 'origin/master' into UX-1371-move-consum…
jvorcak Jul 20, 2026
0168b23
chore(ui): update stat component from registry
jvorcak Jul 20, 2026
1b79c81
refactor(consumers): replace Text typography component with semantic …
jvorcak Jul 20, 2026
f026317
Merge branch 'master' into UX-1371-move-consumer-groups-to-ui-registry
jvorcak Jul 22, 2026
1c3ce0b
Merge branch 'master' into UX-1371-move-consumer-groups-to-ui-registry
jvorcak Jul 31, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions frontend/src/components/pages/consumers/column-meta.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
/**
* Copyright 2025 Redpanda Data, Inc.
*
* Use of this software is governed by the Business Source License
* included in the file https://github.com/redpanda-data/redpanda/blob/dev/licenses/bsl.md
*
* As of the Change Date specified in that file, in accordance with
* the Business Source License, use of this software will be governed
* by the Apache License, Version 2.0
*/

import type { VariantProps } from 'class-variance-authority';
import type { tableHeadVariants } from 'components/redpanda-ui/components/table';

type TableHeadVariants = VariantProps<typeof tableHeadVariants>;

/** `columnDef.meta` shape shared by the consumer group tables, derived from the registry's TableHead variants. */
export type ColumnMeta = {
align?: TableHeadVariants['align'];
headWidth?: TableHeadVariants['width'];
};
Loading
Loading