@florid-kit/components 0.8.65 → 0.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,26 @@
1
+ import { LitElement } from 'lit';
2
+
3
+ export declare class OccitaneCheckbox extends LitElement {
4
+ checked: boolean;
5
+ indeterminate: boolean;
6
+ disabled: boolean;
7
+ size: "S" | "L";
8
+ showLabel: boolean;
9
+ label: string;
10
+ name: string;
11
+ value: string;
12
+ inputId: string;
13
+ private inputEl;
14
+ constructor();
15
+ static styles: import('lit').CSSResult;
16
+ private toggle;
17
+ private syncInput;
18
+ protected updated(changedProperties: Map<string, unknown>): void;
19
+ private handleKeyDown;
20
+ render(): import('lit').TemplateResult<1>;
21
+ }
22
+ declare global {
23
+ interface HTMLElementTagNameMap {
24
+ "o-checkbox": OccitaneCheckbox;
25
+ }
26
+ }