Skip to content

Commit

Permalink
[showcase][tabular-grid] Display all cases on the filter
Browse files Browse the repository at this point in the history
  • Loading branch information
bsastregx committed Jan 30, 2025
1 parent 92ba5ef commit 8aae6a5
Showing 1 changed file with 17 additions and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,23 +41,23 @@ export class TabularGridComponent {
*/
tabularGrids = computed(() => {
const newTabularGrids = new Map<string, boolean>([
// ["Selection: none + keyboard focus", true],
["With Row Set", true]
// ["Selection: single + keyboard: focus", true],
// ["Selection: single + keyboard: select", true],
// ["Selection: multiple + keyboard: focus", true],
// ["Selection: multiple + keyboard: select", true],
// ["Row mark + keyboard: select", true],
// ["Row mark + keyboard: focus", true],
// ["Row reorder (dragging)", true],
// ["Row action", true],
// ["Tree grid", true],
// ["Align cells: block start", true],
// ["Align cells: block center", true],
// ["Align cells: block end", true],
// ["Align cells: inline start", true],
// ["Align cells: inline center", true],
// ["Align cells: inline end", true]
["Selection: none + keyboard focus", true],
["With Row Set", true],
["Selection: single + keyboard: focus", true],
["Selection: single + keyboard: select", true],
["Selection: multiple + keyboard: focus", true],
["Selection: multiple + keyboard: select", true],
["Row mark + keyboard: focus", true],
["Row mark + keyboard: select", true],
["Row reorder (dragging)", true],
["Row action", true],
["Tree grid", true],
["Align cells: block start", true],
["Align cells: block center", true],
["Align cells: block end", true],
["Align cells: inline start", true],
["Align cells: inline center", true],
["Align cells: inline end", true]
]);

// Update the rendered tabular grids by watching changes for the
Expand Down

0 comments on commit 8aae6a5

Please sign in to comment.