@florid-kit/components 2.0.1 → 2.1.1

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,5 +1,6 @@
1
1
  declare const iconRegistry: {
2
2
  readonly "occ-address": string;
3
+ readonly "occ-autorep": string;
3
4
  readonly "occ-back": string;
4
5
  readonly "occ-bag-filled": string;
5
6
  readonly "occ-bag-outlined": string;
@@ -24,6 +25,7 @@ declare const iconRegistry: {
24
25
  readonly "occ-eye-show": string;
25
26
  readonly "occ-geoloc": string;
26
27
  readonly "occ-gift": string;
28
+ readonly "occ-group": string;
27
29
  readonly "occ-hand-shake": string;
28
30
  readonly "occ-info": string;
29
31
  readonly "occ-location": string;
@@ -51,6 +53,7 @@ declare const iconRegistry: {
51
53
  readonly "occ-star-75": string;
52
54
  readonly "occ-store": string;
53
55
  readonly "occ-warning": string;
56
+ readonly "occ-warning-stroke": string;
54
57
  readonly "occ-wishlist-filled": string;
55
58
  readonly "occ-wishlist-outlined": string;
56
59
  readonly wishlist: string;
@@ -0,0 +1,27 @@
1
+ import { LitElement } from 'lit';
2
+
3
+ export declare class OccitaneHeaderSimplify extends LitElement {
4
+ static styles: import('lit').CSSResult;
5
+ makeSticky: boolean;
6
+ showBackButton: boolean;
7
+ backButtonLabel: string;
8
+ backButtonHref: string;
9
+ logoHref: string;
10
+ logoUrl: string;
11
+ locale: string;
12
+ loccitaneGroup: string;
13
+ private isMobile;
14
+ private isScrolled;
15
+ private mediaQueryList?;
16
+ private handleMediaChange;
17
+ private handleScroll;
18
+ connectedCallback(): void;
19
+ disconnectedCallback(): void;
20
+ private renderBackButton;
21
+ render(): import('lit').TemplateResult<1>;
22
+ }
23
+ declare global {
24
+ interface HTMLElementTagNameMap {
25
+ "o-header-simplify": OccitaneHeaderSimplify;
26
+ }
27
+ }
package/css.d.ts CHANGED
@@ -1,3 +1,4 @@
1
1
  export declare const focusRing: import('lit').CSSResult;
2
2
  export declare const cssReset: import('lit').CSSResult;
3
3
  export declare const srOnly: import('lit').CSSResult;
4
+ export declare const visuallyHidden: import('lit').CSSResult;