1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
import { html, ifDefined } from "../vendor/lit.all.mjs";
// eslint-disable-next-line import/no-unassigned-import
import "./moz-toggle.mjs";
export default {
title: "Design System/Experiments/MozToggle",
parameters: {
actions: {
handles: ["toggle"],
},
},
};
const Template = ({ pressed, disabled, label, description, ariaLabel }) => html`
<div style="max-width: 400px">
<moz-toggle
?pressed=${pressed}
?disabled=${disabled}
label=${ifDefined(label)}
description=${ifDefined(description)}
aria-label=${ifDefined(ariaLabel)}
></moz-toggle>
</div>
`;
export const Default = Template.bind({});
Default.args = {
pressed: true,
disabled: false,
ariaLabel: "This is the aria-label",
};
export const Disabled = Template.bind({});
Disabled.args = {
...Default.args,
disabled: true,
};
export const WithLabel = Template.bind({});
WithLabel.args = {
pressed: true,
disabled: false,
label: "This is the label",
};
export const WithDescription = Template.bind({});
WithDescription.args = {
...WithLabel.args,
description: "This is the description",
};
|