@chameleon-ds/tabs
v2.0.1
Published
Chameleon tabs
Downloads
24
Keywords
Readme
Chameleon Tabs
import { html } from "@open-wc/demoing-storybook";
import "./chameleon-tab.js";
import "./chameleon-tabs.js";
export default {
title: "Components|Navigation/Tabs",
component: "chameleon-tabs",
options: { selectedPanel: "storybookjs/docs/panel" },
};
Properties
chameleon-tabs
| Property Name | Type(s) | Default Value | Description |
| ------------- | ------- | ------------- | -------------------------------------------------------------- |
| urlRewrite
| Boolean | true
| Automatically rewrite URL with tab index information when true |
| selected
| Number | 0
| The selected tab's index |
Examples
Default
export const Default = () => html`
<chameleon-tabs selected="0">
<chameleon-tab>
Tab One
</chameleon-tab>
<chameleon-tab>
Tab Two
</chameleon-tab>
<chameleon-tab>
Tab Three
</chameleon-tab>
</chameleon-tabs>
`;