Skip to content

Commit 85a3e7b

Browse files
ci: apply automated fixes
1 parent f3c37dd commit 85a3e7b

File tree

6 files changed

+8
-6
lines changed

6 files changed

+8
-6
lines changed

packages/angular-table/src/constructTableHelper.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export type TableHelper_Core<
4040
tableCreator: <TData extends RowData>(
4141
tableOptions: () => Omit<
4242
TableOptions<TFeatures, TData>,
43-
'_features' | '_rowModels'
43+
'_features' | '_rowModels'
4444
>,
4545
) => Table<TFeatures, TData>
4646
}

packages/angular-table/src/createTableHelper.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export type TableHelper<
1717
injectTable: <TInferData extends TData>(
1818
tableOptions: () => Omit<
1919
TableOptions<TFeatures, TInferData>,
20-
'_features' | '_rowModels'
20+
'_features' | '_rowModels'
2121
>,
2222
) => Table<TFeatures, TInferData>
2323
}

packages/react-table/src/createTableHelper.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export type TableHelper<
1616
useTable: <TData extends RowData>(
1717
tableOptions: Omit<
1818
TableOptions<TFeatures, TData>,
19-
'_features' | '_rowModels'
19+
'_features' | '_rowModels'
2020
>,
2121
) => Table<TFeatures, TData>
2222
}

packages/solid-table/src/createTableHelper.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export type TableHelper<
1616
createTable: (
1717
tableOptions: Omit<
1818
TableOptions<TFeatures, TData>,
19-
'_features' | '_rowModels'
19+
'_features' | '_rowModels'
2020
>,
2121
) => Table<TFeatures, TData>
2222
}

packages/svelte-table/src/createTableHelper.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export type TableHelper<
1616
createTable: (
1717
tableOptions: Omit<
1818
TableOptions<TFeatures, TData>,
19-
'_features' | '_rowModels'
19+
'_features' | '_rowModels'
2020
>,
2121
) => Table<TFeatures, TData>
2222
}

packages/table-core/src/features/row-sorting/createSortedRowModel.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,9 @@ function _createSortedRowModel<
5151

5252
// Filter out sortings that correspond to non existing columns
5353
const availableSorting = sorting.filter((sort) =>
54-
column_getCanSort(table.getColumn(sort.id) as Column_Internal<TFeatures, TData>),
54+
column_getCanSort(
55+
table.getColumn(sort.id) as Column_Internal<TFeatures, TData>,
56+
),
5557
)
5658

5759
const columnInfoById: Record<

0 commit comments

Comments
 (0)