Skip to content

Commit

Permalink
template
Browse files Browse the repository at this point in the history
  • Loading branch information
scomea committed Dec 21, 2023
1 parent 523fe6f commit 382d188
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion packages/web-components/fast-foundation/docs/api-report.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
18 changes: 9 additions & 9 deletions packages/web-components/fast-foundation/src/tabs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Original file line number Diff line number Diff line change
@@ -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";
Expand Down

0 comments on commit 382d188

Please sign in to comment.