diff --git a/packages/web-components/fast-foundation/docs/api-report.md b/packages/web-components/fast-foundation/docs/api-report.md index 7b6bd2bcbf0..bd1fb412bcd 100644 --- a/packages/web-components/fast-foundation/docs/api-report.md +++ b/packages/web-components/fast-foundation/docs/api-report.md @@ -1966,7 +1966,7 @@ export class FASTTabs extends FASTElement { // @internal (undocumented) orientationChanged(): void; // (undocumented) - protected setTabs: () => void; + protected setTabs(): void; // @internal (undocumented) tabpanels: HTMLElement[]; // @internal (undocumented) diff --git a/packages/web-components/fast-foundation/src/tabs/README.md b/packages/web-components/fast-foundation/src/tabs/README.md index a968d37d1e9..f6fb58d478e 100644 --- a/packages/web-components/fast-foundation/src/tabs/README.md +++ b/packages/web-components/fast-foundation/src/tabs/README.md @@ -126,18 +126,18 @@ export const myTabs = Tabs.compose({ #### Fields -| Name | Privacy | Type | Default | Description | Inherited From | -| ------------- | --------- | ----------------- | ------- | ----------------------------- | -------------- | -| `orientation` | public | `TabsOrientation` | | The orientation | | -| `activeid` | public | `string` | | The id of the active tab | | -| `activetab` | public | `HTMLElement` | | A reference to the active tab | | -| `setTabs` | protected | | | | | +| Name | Privacy | Type | Default | Description | Inherited From | +| ------------- | ------- | ----------------- | ------- | ----------------------------- | -------------- | +| `orientation` | public | `TabsOrientation` | | The orientation | | +| `activeid` | public | `string` | | The id of the active tab | | +| `activetab` | public | `HTMLElement` | | A reference to the active tab | | #### Methods -| Name | Privacy | Description | Parameters | Return | Inherited From | -| -------- | ------- | ------------------------------ | -------------------- | ------ | -------------- | -| `adjust` | public | The adjust method for FASTTabs | `adjustment: number` | `void` | | +| Name | Privacy | Description | Parameters | Return | Inherited From | +| --------- | --------- | ------------------------------ | -------------------- | ------ | -------------- | +| `setTabs` | protected | | | `void` | | +| `adjust` | public | The adjust method for FASTTabs | `adjustment: number` | `void` | | #### Events diff --git a/packages/web-components/fast-foundation/src/tabs/tabs.template.ts b/packages/web-components/fast-foundation/src/tabs/tabs.template.ts index 4d98139a436..192ff626579 100644 --- a/packages/web-components/fast-foundation/src/tabs/tabs.template.ts +++ b/packages/web-components/fast-foundation/src/tabs/tabs.template.ts @@ -1,4 +1,4 @@ -import { ElementViewTemplate, html, ref, slotted, when } from "@microsoft/fast-element"; +import { ElementViewTemplate, html, slotted } from "@microsoft/fast-element"; import { endSlotTemplate, startSlotTemplate } from "../patterns/index.js"; import type { FASTTabs } from "./tabs.js"; import type { TabsOptions } from "./tabs.options.js";