mirror of
https://github.com/bitwarden/browser
synced 2025-12-17 16:53:34 +00:00
[SM-74] TableDataSource for sorting (#4079)
* Initial draft of a table data source * Improve table data source * Migrate projects table for demo * Update existing tables * Fix access selector * remove sortDirection from custom fn * a11y improvements * update icons; make button full width * update storybook docs * apply code review changes * fix: add table body to projects list * Fix error on create secret. Fix project list setting projects on getter. Copy table data on set. Fix documentation * Change signature to protected, rename method to not start with underscore * add hover and focus effects Co-authored-by: William Martin <contact@willmartian.com>
This commit is contained in:
@@ -3,11 +3,18 @@ import { NgModule } from "@angular/core";
|
||||
|
||||
import { CellDirective } from "./cell.directive";
|
||||
import { RowDirective } from "./row.directive";
|
||||
import { TableComponent } from "./table.component";
|
||||
import { SortableComponent } from "./sortable.component";
|
||||
import { TableBodyDirective, TableComponent } from "./table.component";
|
||||
|
||||
@NgModule({
|
||||
imports: [CommonModule],
|
||||
declarations: [TableComponent, CellDirective, RowDirective],
|
||||
exports: [TableComponent, CellDirective, RowDirective],
|
||||
declarations: [
|
||||
TableComponent,
|
||||
CellDirective,
|
||||
RowDirective,
|
||||
SortableComponent,
|
||||
TableBodyDirective,
|
||||
],
|
||||
exports: [TableComponent, CellDirective, RowDirective, SortableComponent, TableBodyDirective],
|
||||
})
|
||||
export class TableModule {}
|
||||
|
||||
Reference in New Issue
Block a user