@florid-kit/components 0.9.30 → 0.9.31

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,41 +1,30 @@
1
1
  import { LitElement } from 'lit';
2
2
 
3
- /**
4
- * <o-popin>
5
- * - Fond contrôlable via `background` (couleur/gradient/url) ou `background-url` (image).
6
- * - `background` est prioritaire sur `background-url`.
7
- */
8
3
  export declare class OPopin extends LitElement {
9
- /** Page Designer (aperçu standalone) */
10
4
  ispagedesigner: boolean;
11
- /** CSS class externe optionnelle */
12
5
  get classPopin(): string;
13
6
  set classPopin(value: string);
14
7
  private _classPopin;
15
- /** Ouverture */
16
8
  open: boolean;
17
- /** 🔸 Fond générique : couleur / gradient / url(...) center/cover no-repeat */
18
9
  background: string;
19
- /** 🔹 Fond image simple (compat) */
20
10
  backgroundUrl: string;
21
- /** Fermer via ESC */
22
11
  closeOnEsc: boolean;
23
- /** Fermer via clic backdrop */
24
12
  closeOnBackdrop: boolean;
25
- /** Bloquer le scroll de page */
26
13
  lockScroll: boolean;
27
- /** Variant: fullscreen | dialog */
28
14
  variant: "fullscreen" | "dialog";
29
- /** Max-width pour variant=dialog */
30
15
  maxWidth: string;
16
+ showBackButton: boolean;
17
+ contrast: boolean;
31
18
  private _labelId;
32
19
  connectedCallback(): void;
33
20
  disconnectedCallback(): void;
34
21
  protected updated(changed: Map<string, unknown>): void;
35
22
  private _onKeydown;
36
23
  private _onBackdropClick;
24
+ private _onBackClick;
37
25
  private _requestClose;
38
26
  private _renderCloseButton;
27
+ private _renderBackButton;
39
28
  static styles: import('lit').CSSResult;
40
29
  render(): import('lit').TemplateResult<1>;
41
30
  }