@florid-kit/components 0.8.8 → 0.8.10

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.
@@ -1,12 +1,17 @@
1
1
  import { LitElement } from 'lit';
2
2
 
3
- type ChipType = "" | "active";
4
- export declare class OccitaneChip extends LitElement {
3
+ declare const buttonBaseClass: import('../behaviors/mixin').MixinReturn<typeof LitElement, import('../behaviors/element-internals.js').WithElementInternals>;
4
+ export declare class OccitaneChip extends buttonBaseClass {
5
5
  static styles: import('lit').CSSResult;
6
- type: ChipType;
7
- text: string;
8
6
  link: string;
9
- render(): import('lit').TemplateResult<1>;
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>;
10
15
  }
11
16
  declare global {
12
17
  interface HTMLElementTagNameMap {
@@ -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,24 @@
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 crossIconName;
13
+ private strikethroughIcon;
14
+ private handleClick;
15
+ private crossIcon;
16
+ private strikeThroughImg;
17
+ protected render(): import('lit').TemplateResult<1>;
18
+ }
19
+ declare global {
20
+ interface HTMLElementTagNameMap {
21
+ "o-filter-chip": OccitaneFilterChip;
22
+ }
23
+ }
24
+ export {};