diff --git a/packages/table-core/src/core/headers.ts b/packages/table-core/src/core/headers.ts index 263da8d29d..77ae572dc0 100644 --- a/packages/table-core/src/core/headers.ts +++ b/packages/table-core/src/core/headers.ts @@ -109,100 +109,100 @@ export interface CoreHeader { export interface HeadersInstance { /** * Returns all header groups for the table. - * @link [API Docs](https://tanstack.com/table/v8/docs/api/core/headers#getheadergroups) + * @link [API Docs](https://tanstack.com/table/v8/docs/api/core/header#getheadergroups) * @link [Guide](https://tanstack.com/table/v8/docs/guide/headers) */ getHeaderGroups: () => HeaderGroup[] /** * If pinning, returns the header groups for the left pinned columns. - * @link [API Docs](https://tanstack.com/table/v8/docs/api/core/headers#getleftheadergroups) + * @link [API Docs](https://tanstack.com/table/v8/docs/api/core/header#getleftheadergroups) * @link [Guide](https://tanstack.com/table/v8/docs/guide/headers) */ getLeftHeaderGroups: () => HeaderGroup[] /** * If pinning, returns the header groups for columns that are not pinned. - * @link [API Docs](https://tanstack.com/table/v8/docs/api/core/headers#getcenterheadergroups) + * @link [API Docs](https://tanstack.com/table/v8/docs/api/core/header#getcenterheadergroups) * @link [Guide](https://tanstack.com/table/v8/docs/guide/headers) */ getCenterHeaderGroups: () => HeaderGroup[] /** * If pinning, returns the header groups for the right pinned columns. - * @link [API Docs](https://tanstack.com/table/v8/docs/api/core/headers#getrightheadergroups) + * @link [API Docs](https://tanstack.com/table/v8/docs/api/core/header#getrightheadergroups) * @link [Guide](https://tanstack.com/table/v8/docs/guide/headers) */ getRightHeaderGroups: () => HeaderGroup[] /** * Returns the footer groups for the table. - * @link [API Docs](https://tanstack.com/table/v8/docs/api/core/headers#getfootergroups) + * @link [API Docs](https://tanstack.com/table/v8/docs/api/core/header#getfootergroups) * @link [Guide](https://tanstack.com/table/v8/docs/guide/headers) */ getFooterGroups: () => HeaderGroup[] /** * If pinning, returns the footer groups for the left pinned columns. - * @link [API Docs](https://tanstack.com/table/v8/docs/api/core/headers#getleftfootergroups) + * @link [API Docs](https://tanstack.com/table/v8/docs/api/core/header#getleftfootergroups) * @link [Guide](https://tanstack.com/table/v8/docs/guide/headers) */ getLeftFooterGroups: () => HeaderGroup[] /** * If pinning, returns the footer groups for columns that are not pinned. - * @link [API Docs](https://tanstack.com/table/v8/docs/api/core/headers#getcenterfootergroups) + * @link [API Docs](https://tanstack.com/table/v8/docs/api/core/header#getcenterfootergroups) * @link [Guide](https://tanstack.com/table/v8/docs/guide/headers) */ getCenterFooterGroups: () => HeaderGroup[] /** * If pinning, returns the footer groups for the right pinned columns. - * @link [API Docs](https://tanstack.com/table/v8/docs/api/core/headers#getrightfootergroups) + * @link [API Docs](https://tanstack.com/table/v8/docs/api/core/header#getrightfootergroups) * @link [Guide](https://tanstack.com/table/v8/docs/guide/headers) */ getRightFooterGroups: () => HeaderGroup[] /** * Returns headers for all columns in the table, including parent headers. - * @link [API Docs](https://tanstack.com/table/v8/docs/api/core/headers#getflatheaders) + * @link [API Docs](https://tanstack.com/table/v8/docs/api/core/header#getflatheaders) * @link [Guide](https://tanstack.com/table/v8/docs/guide/headers) */ getFlatHeaders: () => Header[] /** * If pinning, returns headers for all left pinned columns in the table, including parent headers. - * @link [API Docs](https://tanstack.com/table/v8/docs/api/core/headers#getleftflatheaders) + * @link [API Docs](https://tanstack.com/table/v8/docs/api/core/header#getleftflatheaders) * @link [Guide](https://tanstack.com/table/v8/docs/guide/headers) */ getLeftFlatHeaders: () => Header[] /** * If pinning, returns headers for all columns that are not pinned, including parent headers. - * @link [API Docs](https://tanstack.com/table/v8/docs/api/core/headers#getcenterflatheaders) + * @link [API Docs](https://tanstack.com/table/v8/docs/api/core/header#getcenterflatheaders) * @link [Guide](https://tanstack.com/table/v8/docs/guide/headers) */ getCenterFlatHeaders: () => Header[] /** * If pinning, returns headers for all right pinned columns in the table, including parent headers. - * @link [API Docs](https://tanstack.com/table/v8/docs/api/core/headers#getrightflatheaders) + * @link [API Docs](https://tanstack.com/table/v8/docs/api/core/header#getrightflatheaders) * @link [Guide](https://tanstack.com/table/v8/docs/guide/headers) */ getRightFlatHeaders: () => Header[] /** * Returns headers for all leaf columns in the table, (not including parent headers). - * @link [API Docs](https://tanstack.com/table/v8/docs/api/core/headers#getleafheaders) + * @link [API Docs](https://tanstack.com/table/v8/docs/api/core/header#getleafheaders) * @link [Guide](https://tanstack.com/table/v8/docs/guide/headers) */ getLeafHeaders: () => Header[] /** * If pinning, returns headers for all left pinned leaf columns in the table, (not including parent headers). - * @link [API Docs](https://tanstack.com/table/v8/docs/api/core/headers#getleftleafheaders) + * @link [API Docs](https://tanstack.com/table/v8/docs/api/core/header#getleftleafheaders) * @link [Guide](https://tanstack.com/table/v8/docs/guide/headers) */ getLeftLeafHeaders: () => Header[] /** * If pinning, returns headers for all columns that are not pinned, (not including parent headers). - * @link [API Docs](https://tanstack.com/table/v8/docs/api/core/headers#getcenterleafheaders) + * @link [API Docs](https://tanstack.com/table/v8/docs/api/core/header#getcenterleafheaders) * @link [Guide](https://tanstack.com/table/v8/docs/guide/headers) */ getCenterLeafHeaders: () => Header[] /** * If pinning, returns headers for all right pinned leaf columns in the table, (not including parent headers). - * @link [API Docs](https://tanstack.com/table/v8/docs/api/core/headers#getrightleafheaders) + * @link [API Docs](https://tanstack.com/table/v8/docs/api/core/header#getrightleafheaders) * @link [Guide](https://tanstack.com/table/v8/docs/guide/headers) */ getRightLeafHeaders: () => Header[]