@florid-kit/components 0.8.7 → 0.8.9
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.
- package/components/chip.d.ts +21 -0
- package/components/chipset.d.ts +14 -0
- package/components/filter-chip.d.ts +22 -0
- package/index.js +166 -72
- package/index.mjs +499 -362
- package/package.json +1 -1
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { LitElement } from 'lit';
|
|
2
|
+
|
|
3
|
+
declare const buttonBaseClass: import('../behaviors/mixin').MixinReturn<typeof LitElement, import('../behaviors/element-internals.js').WithElementInternals>;
|
|
4
|
+
export declare class OccitaneChip extends buttonBaseClass {
|
|
5
|
+
static styles: import('lit').CSSResult;
|
|
6
|
+
link: string;
|
|
7
|
+
name: string;
|
|
8
|
+
value: string;
|
|
9
|
+
text: string;
|
|
10
|
+
size: string;
|
|
11
|
+
selected: boolean;
|
|
12
|
+
fullwidth: boolean;
|
|
13
|
+
private handleClick;
|
|
14
|
+
protected render(): import('lit').TemplateResult<1>;
|
|
15
|
+
}
|
|
16
|
+
declare global {
|
|
17
|
+
interface HTMLElementTagNameMap {
|
|
18
|
+
"o-chip": OccitaneChip;
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
export {};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { LitElement } from 'lit';
|
|
2
|
+
|
|
3
|
+
export declare class OccitaneChipset extends LitElement {
|
|
4
|
+
constructor();
|
|
5
|
+
name: string;
|
|
6
|
+
value: string;
|
|
7
|
+
private onChipSelected;
|
|
8
|
+
protected render(): import('lit').TemplateResult<1>;
|
|
9
|
+
}
|
|
10
|
+
declare global {
|
|
11
|
+
interface HTMLElementTagNameMap {
|
|
12
|
+
"o-chipset": OccitaneChipset;
|
|
13
|
+
}
|
|
14
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { LitElement } from 'lit';
|
|
2
|
+
|
|
3
|
+
declare const buttonBaseClass: import('../behaviors/mixin').MixinReturn<typeof LitElement, import('../behaviors/element-internals.js').WithElementInternals>;
|
|
4
|
+
export declare class OccitaneFilterChip extends buttonBaseClass {
|
|
5
|
+
static styles: import('lit').CSSResult;
|
|
6
|
+
name: string;
|
|
7
|
+
value: string;
|
|
8
|
+
text: string;
|
|
9
|
+
selected: boolean;
|
|
10
|
+
disabled: boolean;
|
|
11
|
+
fullwidth: boolean;
|
|
12
|
+
private crossIconModel;
|
|
13
|
+
private handleClick;
|
|
14
|
+
private renderIcon;
|
|
15
|
+
protected render(): import('lit').TemplateResult<1>;
|
|
16
|
+
}
|
|
17
|
+
declare global {
|
|
18
|
+
interface HTMLElementTagNameMap {
|
|
19
|
+
"o-filter-chip": OccitaneFilterChip;
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
export {};
|