@florid-kit/components 0.8.58 → 0.8.60

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,2 +1,3 @@
1
1
  export declare const iconsMap: Record<string, string>;
2
2
  export declare const imagesMap: Record<string, string>;
3
+ export declare const toastIconsMap: Record<string, string>;
@@ -6,7 +6,8 @@ export declare class OccitaneFilterChip extends buttonBaseClass {
6
6
  name: string;
7
7
  value: string;
8
8
  type: string;
9
- dataHref: string;
9
+ href?: string;
10
+ dataHref?: string;
10
11
  text: string;
11
12
  selected: boolean;
12
13
  disabled: boolean;
@@ -0,0 +1,13 @@
1
+ import { LitElement } from 'lit';
2
+
3
+ export declare class OccitaneToast extends LitElement {
4
+ icon: string;
5
+ text: string;
6
+ static styles: import('lit').CSSResult;
7
+ protected render(): import('lit').TemplateResult<1>;
8
+ }
9
+ declare global {
10
+ interface HTMLElementTagNameMap {
11
+ "o-toast": OccitaneToast;
12
+ }
13
+ }