mirror of
https://github.com/bitwarden/clients.git
synced 2026-06-19 21:02:50 +08:00
* 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>
13 lines
399 B
HTML
13 lines
399 B
HTML
<table class="tw-w-full tw-table-auto tw-leading-normal tw-text-main">
|
|
<thead
|
|
class="tw-text-bold tw-border-0 tw-border-b-2 tw-border-solid tw-border-secondary-300 tw-text-muted"
|
|
>
|
|
<ng-content select="[header]"></ng-content>
|
|
</thead>
|
|
<tbody>
|
|
<ng-container
|
|
*ngTemplateOutlet="templateVariable.template; context: { $implicit: rows }"
|
|
></ng-container>
|
|
</tbody>
|
|
</table>
|