@florid-kit/components 0.10.44 → 0.10.46

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,18 @@
1
+ import { LitElement } from 'lit';
2
+
3
+ export declare class OccitaneTab extends LitElement {
4
+ static styles: import('lit').CSSResult;
5
+ text: string;
6
+ class: string;
7
+ data: string;
8
+ link: string;
9
+ selected: boolean;
10
+ inactive: boolean;
11
+ private handleClick;
12
+ protected render(): import('lit').TemplateResult<1>;
13
+ }
14
+ declare global {
15
+ interface HTMLElementTagNameMap {
16
+ "o-tab": OccitaneTab;
17
+ }
18
+ }
@@ -0,0 +1,9 @@
1
+ import { LitElement } from 'lit';
2
+
3
+ export declare class OccitaneTablist extends LitElement {
4
+ constructor();
5
+ static styles: import('lit').CSSResult;
6
+ private onTabSelected;
7
+ protected firstUpdated(): void;
8
+ protected render(): import('lit').TemplateResult<1>;
9
+ }