Skip to content

fix(b-table): add missing sortKey field type and correct a typo (closes #6352) #6355

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 25, 2021
Merged
Changes from all commits
Commits
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
3 changes: 2 additions & 1 deletion src/components/table/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export declare class BTable extends BvComponent {
busy?: boolean
tbodyTrClass?: string | Array<any> | object | BvTableTbodyTrClassCallback
tbodyTrAttr?: object | BvTableTbodyTrAttrCallback
tabelVariant?: BvTableVariant | string
tableVariant?: BvTableVariant | string
headVariant?: BvTableHeadFootVariant | string
footVariant?: BvTableHeadFootVariant | string
tbodyTransitionProps?: BvTableTbodyTransitionProps
Expand Down Expand Up @@ -226,6 +226,7 @@ export interface BvTableField {
class?: string | string[]
formatter?: string | BvTableFormatterCallback
sortable?: boolean
sortKey?: string
sortDirection?: BvTableSortDirection
sortByFormatted?: boolean | BvTableFormatterCallback
filterByFormatted?: boolean | BvTableFormatterCallback
Expand Down