-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathcheckbox.ts
60 lines (55 loc) · 2.51 KB
/
checkbox.ts
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
55
56
57
58
59
60
import { customElement, html, TemplateResult } from "lit-element";
import { CheckboxBehavior } from "../behavior/checkbox/checkbox-behavior";
import { ISwitchBehaviorProperties, SwitchBehavior } from "../behavior/switch/switch-behavior";
import "../ripple";
import { cssResult } from "../util/css";
import styles from "./checkbox.scss";
/**
* Properties of the switch.
*/
export interface ICheckboxProperties extends ISwitchBehaviorProperties {}
/**
* Turn an option on or off.
* @cssprop --checkbox-size - Width and height
* @cssprop --checkbox-border-config - Border configuration (width and style)
* @cssprop --checkbox-border-radius - Border radius
* @cssprop --checkbox-transition - Transition
* @cssprop --checkbox-color - Color
* @cssprop --checkbox-bg - Background
* @cssprop --checkbox-color-checked - Color when checked
* @cssprop --checkbox-bg-checked - Background when checked
* @cssprop --checkbox-color-disabled - Color when disabled
* @cssprop --checkbox-bg-disabled - Background when disabled
* @cssprop --checkbox-color-disabled-checked - Color when disabled and checked
* @cssprop --checkbox-bg-disabled-checked - Background when checked and disabled
* @cssprop --checkbox-checkmark-size - Width and height of the checkmark
* @cssprop --checkbox-checkmark-stroke-color - Color of the checkmark stroke
* @cssprop --checkbox-checkmark-transition - Transition of the checkmark
* @cssprop --checkbox-checkmark-path-width - Width of the checkmark
* @cssprop --checkbox-checkmark-path-dasharray - Dasharray of the checkmark
* @cssprop --checkbox-checkmark-path-delay - Transition delay of the checkmark animation
* @cssprop --checkbox-ripple-transform - Transform of the ripple
*/
@customElement("wl-checkbox")
export class Checkbox extends CheckboxBehavior implements ICheckboxProperties {
static styles = [...SwitchBehavior.styles, cssResult(styles)];
/**
* Returns the template for the component.
*/
protected render(): TemplateResult {
return html`
<svg id="checkmark" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" preserveAspectRatio="none" viewBox="0 0 24 24">
<path id="checkmark-path" fill="none" d="M1.73,12.91 8.1,19.28 22.79,4.59"></path>
<line id="indeterminate-path" fill="none" x1="0" y1="12.5" x2="24" y2="12.5" />
</svg>
<wl-ripple id="ripple" .target="${this}" focusable overlay unbounded centered initialDuration="200"></wl-ripple>
<slot></slot>
${this.renderFormElement()}
`;
}
}
declare global {
interface HTMLElementTagNameMap {
"wl-checkbox": Checkbox;
}
}