@florid-kit/components 0.10.46 → 0.11.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,20 @@
1
+ import { LitElement } from 'lit';
2
+
3
+ export declare class OccitaneAccordionGroup extends LitElement {
4
+ static styles: import('lit').CSSResult;
5
+ single: boolean;
6
+ private defaultSlot;
7
+ constructor();
8
+ protected firstUpdated(): void;
9
+ disconnectedCallback(): void;
10
+ protected updated(changedProperties: Map<string, unknown>): void;
11
+ private getAccordions;
12
+ private handleAccordionChange;
13
+ private enforceSingleOpen;
14
+ render(): import('lit').TemplateResult<1>;
15
+ }
16
+ declare global {
17
+ interface HTMLElementTagNameMap {
18
+ "o-accordion-group": OccitaneAccordionGroup;
19
+ }
20
+ }
@@ -0,0 +1,18 @@
1
+ import { LitElement } from 'lit';
2
+
3
+ export declare class OccitaneAccordion extends LitElement {
4
+ static styles: import('lit').CSSResult;
5
+ label: string;
6
+ expanded: boolean;
7
+ disabled: boolean;
8
+ private readonly headerId;
9
+ private readonly panelId;
10
+ constructor();
11
+ private toggle;
12
+ render(): import('lit').TemplateResult<1>;
13
+ }
14
+ declare global {
15
+ interface HTMLElementTagNameMap {
16
+ "o-accordion": OccitaneAccordion;
17
+ }
18
+ }