Skip to content

Commit 1b3deca

Browse files
authored
regen static function jsdoc (#6270)
1 parent a1e59df commit 1b3deca

261 files changed

Lines changed: 1666 additions & 1385 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

docs/framework/angular/reference/functions/injectTable.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ title: injectTable
99
function injectTable<TFeatures, TData>(options): AngularTable<TFeatures, TData>;
1010
```
1111

12-
Defined in: [packages/angular-table/src/injectTable.ts:91](https://github.com/TanStack/table/blob/main/packages/angular-table/src/injectTable.ts#L91)
12+
Defined in: [packages/angular-table/src/injectTable.ts:92](https://github.com/TanStack/table/blob/main/packages/angular-table/src/injectTable.ts#L92)
1313

1414
Creates and returns an Angular-reactive table instance.
1515

docs/framework/angular/reference/type-aliases/AngularTable.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ title: AngularTable
99
type AngularTable<TFeatures, TData> = Table<TFeatures, TData>;
1010
```
1111

12-
Defined in: [packages/angular-table/src/injectTable.ts:30](https://github.com/TanStack/table/blob/main/packages/angular-table/src/injectTable.ts#L30)
12+
Defined in: [packages/angular-table/src/injectTable.ts:31](https://github.com/TanStack/table/blob/main/packages/angular-table/src/injectTable.ts#L31)
1313

1414
## Type Parameters
1515

docs/framework/angular/reference/type-aliases/SubscribeSource.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ type SubscribeSource<TValue> =
1313
| ReadonlyStore<TValue>;
1414
```
1515

16-
Defined in: [packages/angular-table/src/injectTable.ts:24](https://github.com/TanStack/table/blob/main/packages/angular-table/src/injectTable.ts#L24)
16+
Defined in: [packages/angular-table/src/injectTable.ts:25](https://github.com/TanStack/table/blob/main/packages/angular-table/src/injectTable.ts#L25)
1717

1818
## Type Parameters
1919

docs/reference/index/functions/assignPrototypeAPIs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ function assignPrototypeAPIs<TFeatures, TData, TDeps, TDepArgs>(
1313
apis): void;
1414
```
1515

16-
Defined in: [utils.ts:403](https://github.com/TanStack/table/blob/main/packages/table-core/src/utils.ts#L403)
16+
Defined in: [utils.ts:378](https://github.com/TanStack/table/blob/main/packages/table-core/src/utils.ts#L378)
1717

1818
Assigns API methods to a prototype object for memory-efficient method sharing.
1919
All instances created with this prototype will share the same method references.

docs/reference/index/functions/assignTableAPIs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ function assignTableAPIs<TFeatures, TData, TDeps, TDepArgs>(
1212
apis): void;
1313
```
1414

15-
Defined in: [utils.ts:361](https://github.com/TanStack/table/blob/main/packages/table-core/src/utils.ts#L361)
15+
Defined in: [utils.ts:336](https://github.com/TanStack/table/blob/main/packages/table-core/src/utils.ts#L336)
1616

1717
Assigns Table API methods directly to the table instance.
1818
Unlike row/cell/column/header, the table is a singleton so methods are assigned directly.

docs/reference/index/functions/callMemoOrStaticFn.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ function callMemoOrStaticFn<TObject, TStaticFn>(
1313
args): ReturnType<TStaticFn>;
1414
```
1515

16-
Defined in: [utils.ts:451](https://github.com/TanStack/table/blob/main/packages/table-core/src/utils.ts#L451)
16+
Defined in: [utils.ts:424](https://github.com/TanStack/table/blob/main/packages/table-core/src/utils.ts#L424)
1717

1818
Looks to run the memoized function with the builder pattern on the object if it exists, otherwise fallback to the static method passed in.
1919

docs/reference/index/functions/constructCell.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ function constructCell<TFeatures, TData, TValue>(
1212
table): Cell<TFeatures, TData, TValue>;
1313
```
1414

15-
Defined in: [core/cells/constructCell.ts:31](https://github.com/TanStack/table/blob/main/packages/table-core/src/core/cells/constructCell.ts#L31)
15+
Defined in: [core/cells/constructCell.ts:32](https://github.com/TanStack/table/blob/main/packages/table-core/src/core/cells/constructCell.ts#L32)
1616

1717
Constructs a cell instance from normalized table internals.
1818

docs/reference/index/functions/constructColumn.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ function constructColumn<TFeatures, TData, TValue>(
1313
parent?): Column<TFeatures, TData, TValue>;
1414
```
1515

16-
Defined in: [core/columns/constructColumn.ts:35](https://github.com/TanStack/table/blob/main/packages/table-core/src/core/columns/constructColumn.ts#L35)
16+
Defined in: [core/columns/constructColumn.ts:36](https://github.com/TanStack/table/blob/main/packages/table-core/src/core/columns/constructColumn.ts#L36)
1717

1818
Constructs a column instance from normalized table internals.
1919

docs/reference/index/functions/constructColumnVisibilityFeature.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ title: constructColumnVisibilityFeature
99
function constructColumnVisibilityFeature<TFeatures, TData>(): TableFeature<ColumnVisibilityFeatureConstructors<TFeatures, TData>>;
1010
```
1111

12-
Defined in: [features/column-visibility/columnVisibilityFeature.ts:50](https://github.com/TanStack/table/blob/main/packages/table-core/src/features/column-visibility/columnVisibilityFeature.ts#L50)
12+
Defined in: [features/column-visibility/columnVisibilityFeature.ts:51](https://github.com/TanStack/table/blob/main/packages/table-core/src/features/column-visibility/columnVisibilityFeature.ts#L51)
1313

1414
Creates the stock column visibility feature.
1515

docs/reference/index/functions/constructCoreHeadersFeature.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ title: constructCoreHeadersFeature
99
function constructCoreHeadersFeature<TFeatures, TData>(): TableFeature<CoreHeadersFeatureConstructors<TFeatures, TData>>;
1010
```
1111

12-
Defined in: [core/headers/coreHeadersFeature.ts:36](https://github.com/TanStack/table/blob/main/packages/table-core/src/core/headers/coreHeadersFeature.ts#L36)
12+
Defined in: [core/headers/coreHeadersFeature.ts:27](https://github.com/TanStack/table/blob/main/packages/table-core/src/core/headers/coreHeadersFeature.ts#L27)
1313

1414
Creates the stock core headers feature.
1515

0 commit comments

Comments
 (0)